You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran runall.sh on a codebase where a unit test in a subdirectory was known to fail. The failure was not detected, giving the false impression that all tests has succeeded.
$ NO_REMOTE=y ./runall.sh
...
F
======================================================================
FAIL: test_str (__main__.DNSTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test_dns.py", line 28, in test_str
"DNS RESPONSEn"
File "test_dns.py", line 8, in chk
self.assertEqual(str(DNS(b)),t)
AssertionError: ...
...
Ran 1 testin 0.001s
FAILED (failures=1)
...
NO ERRORS found, congrats!
runall.sh tests for overall failure by grepping for ERROR in $OUTPUTFILE, but runalltestcases.sh scripts do not output this string.
The text was updated successfully, but these errors were encountered:
I ran runall.sh on a codebase where a unit test in a subdirectory was known to fail. The failure was not detected, giving the false impression that all tests has succeeded.
runall.sh tests for overall failure by grepping for ERROR in $OUTPUTFILE, but runalltestcases.sh scripts do not output this string.
The text was updated successfully, but these errors were encountered: