test failure is not noticed

This commit is contained in:
Benjamin Sergeant 2019-01-05 16:30:22 -08:00
parent 89ff9dd5ac
commit b1e2c4ce72

View File

@ -58,4 +58,5 @@ shutil.copy(os.path.join(
'zlib.dll'), '.')
testCommand = '{} {}'.format(testBinary, os.getenv('TEST', ''))
os.system(testCommand)
ret = os.system(testCommand)
assert ret == 0, 'Test command failed'