@@ -1041,8 +1041,6 @@ def replace_standard_values(self, command):
10411041 return command
10421042
10431043 def to_run (self ):
1044- if g_config .runAll == True :
1045- return True
10461044 if len (self .flags .keys ()) == 0 :
10471045 return g_config .include_by_default
10481046 for x in self .flags .keys ():
@@ -1456,8 +1454,6 @@ def __init__(self, config_dict=None):
14561454 self .CPP = "" # type: str
14571455 self .FC = "" # type: str
14581456
1459- self .runAll = False # type: bool
1460-
14611457 self .CCFlags = [] # type: List[str]
14621458 self .CPPFlags = [] # type: List[str]
14631459 self .FCFlags = [] # type: List[str]
@@ -1694,8 +1690,6 @@ def include_config(self, filename):
16941690 mutated_test_dir_overwritten = False
16951691 for x in data :
16961692 if not (x .startswith ("!" ) or x .startswith ("#" )):
1697- if x .startswith ("RunAllTests:" ):
1698- self .runAll = (x .split (":" )[- 1 ].strip ().lower () == "true" )
16991693 if x .startswith ("Vendor:" ):
17001694 self .set_vendor ((x .split (":" )[- 1 ]).strip ())
17011695 if x .startswith ("CCFlags:" ):
@@ -2175,7 +2169,7 @@ def copy_headers_to_dir(tl, dirname):
21752169
21762170
21772171
2178- OpenACCVersions = ["1.0" , "2.0" , "2.5" , "2.6" , "2.7" , "3.0" , "3.1" , "3.2" , "3.3" ]
2172+ OpenACCVersions = ["1.0" , "2.0" , "2.5" , "2.6" , "2.7" ]
21792173g_config = None # type: Optional[config]
21802174g_system = None # type: Optional[system]
21812175g_results = None # type: Optional[results]
@@ -2286,4 +2280,4 @@ def main():
22862280 print ("Time spent running/compiling: " + str (g_subprocess_runtime ))
22872281
22882282if __name__ == "__main__" :
2289- main ()
2283+ main ()
0 commit comments