Skip to content

Commit 0f9ccbb

Browse files
committed
check expected llvm version in other.test_emcc
1 parent 58aebef commit 0f9ccbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_other.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def test_emcc(self):
2121

2222
# -v, without input files
2323
output = Popen([PYTHON, compiler, '-v'], stdout=PIPE, stderr=PIPE).communicate()
24-
self.assertContained('''clang version''', output[1].replace('\r', ''), output[1].replace('\r', ''))
24+
self.assertContained('''clang version %s.0 ''' % '.'.join(map(str, EXPECTED_LLVM_VERSION)), output[1].replace('\r', ''), output[1].replace('\r', ''))
2525
self.assertContained('''GNU''', output[0])
2626

2727
# --help

0 commit comments

Comments
 (0)