diff --git a/test/run.py b/test/run.py index edfcbefc..5475ba12 100644 --- a/test/run.py +++ b/test/run.py @@ -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'