Lines Matching refs:compiler_version
376 def expectedFailureGcc(bugnumber=None, compiler_version=["=", None]):
386 if "gcc" in test_compiler and self.expectedCompilerVersion(compiler_version):
403 if "gcc" in test_compiler and self.expectedCompilerVersion(compiler_version):
1262 def expectedCompilerVersion(self, compiler_version):
1263 """Returns True iff compiler_version[1] matches the current compiler version.
1264 Use compiler_version[0] to specify the operator used to determine if a match has occurred.
1268 if (compiler_version == None):
1270 operator = str(compiler_version[0])
1271 version = compiler_version[1]