mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-27 12:04:27 +01:00
test: no fail on dry run
This commit is contained in:
@@ -1082,7 +1082,7 @@ Stop running at the first failed test.
|
|||||||
passes = []
|
passes = []
|
||||||
fails = []
|
fails = []
|
||||||
for test in self.tests:
|
for test in self.tests:
|
||||||
if test.result == TestResult.PASS:
|
if test.result in (TestResult.PASS, None):
|
||||||
passes.append(test)
|
passes.append(test)
|
||||||
else:
|
else:
|
||||||
fails.append(test)
|
fails.append(test)
|
||||||
|
|||||||
Reference in New Issue
Block a user