We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58aebef commit 0f9ccbbCopy full SHA for 0f9ccbb
tests/test_other.py
@@ -21,7 +21,7 @@ def test_emcc(self):
21
22
# -v, without input files
23
output = Popen([PYTHON, compiler, '-v'], stdout=PIPE, stderr=PIPE).communicate()
24
- self.assertContained('''clang version''', output[1].replace('\r', ''), output[1].replace('\r', ''))
+ self.assertContained('''clang version %s.0 ''' % '.'.join(map(str, EXPECTED_LLVM_VERSION)), output[1].replace('\r', ''), output[1].replace('\r', ''))
25
self.assertContained('''GNU''', output[0])
26
27
# --help
0 commit comments