Searched refs:passed (Results 1 - 25 of 101) sorted by relevance

12345

/barrelfish-2018-10-04/tools/harness/tests/
H A Dmonitortest.py23 passed = False
26 passed = True
28 return PassFailResult(passed)
H A Dgreenmarl.py49 # the test passed iff the last line is the finish string
51 passed = False;
54 passed = True;
57 passed = False;
59 return PassFailResult(passed)
62 passed = False
65 passed = True
67 return PassFailResult(passed)
95 # the test passed iff the last line is the finish string
99 passed
[all...]
H A Dtommath.py32 # the test passed if no error occurred
33 passed = 3
36 passed += 1
37 return PassFailResult(passed == 255)
H A Dcaps_next.py21 # the test passed iff the last line is the finish string
22 passed = False
27 passed = results == "0"
28 return PassFailResult(passed)
51 # the test passed iff the last line is the finish string
78 # the test passed iff the last line is the finish string
79 passed = False
84 passed = "passed" in results
85 return PassFailResult(passed)
[all...]
H A Ddistops.py44 # the test passed iff we do not find a line matching the given
47 passed = True
51 passed = False
54 return PassFailResult(found_test and passed)
H A Dmt_waitset.py37 passed = False
40 passed = True
41 return PassFailResult(passed)
H A Dfputest.py27 return "fputest passed successfully!"
30 # the test passed iff the last line is the finish string
34 passed = lastline.startswith(self.get_finish_string())
35 return PassFailResult(passed)
H A Dfreemem.py29 # the test passed iff the last line is the finish string
33 passed = lastline.startswith(self.get_finish_string())
34 return PassFailResult(passed)
H A Dmathtest.py29 # the test passed iff the last line is the finish string
33 passed = lastline.startswith(self.get_finish_string())
34 return PassFailResult(passed)
H A Dperfmontest.py29 # the test passed iff the last line is the finish string
33 passed = lastline.startswith(self.get_finish_string())
34 return PassFailResult(passed)
H A Dskbtest.py29 # the test passed iff the last line is the finish string
33 passed = lastline.startswith(self.get_finish_string())
34 return PassFailResult(passed)
H A Dnkmtest.py25 return "nkmtest_all: all tests passed"
28 # the test passed iff the last line is the finish string
32 passed = lastline.startswith(self.get_finish_string())
33 return PassFailResult(passed)
49 # the test passed iff the last line is the finish string
H A Drpc_cap.py20 # the test passed iff the last line is the finish string
24 passed = lastline.startswith(self.get_finish_string())
25 return PassFailResult(passed)
H A Dvmkit.py44 # the test passed iff the last line is the finish string
48 passed = lastline.startswith(self.get_finish_string())
49 return PassFailResult(passed)
H A Dmultihoptests.py43 # the test passed iff we see the finish string
44 passed = False variable in class:MultihopTest
47 passed = True variable in class:MultihopTest
48 return PassFailResult(passed)
H A Dskew.py36 passed = False
41 passed = True
48 if not passed:
H A Dtftp.py40 passed = False
43 passed = True
45 return PassFailResult(passed)
H A Dmemtest.py26 return "memtest passed successfully!"
29 # the test passed iff the last line is the finish string
33 passed = lastline.startswith(self.get_finish_string())
34 return PassFailResult(passed)
55 if line.startswith("memtest passed successfully!"):
64 if line.startswith("memtest passed successfully!"):
H A DbasicNetwork.py91 passed = None
102 passed = True
114 return PassFailResult(passed == True)
H A Dnfscat.py44 # the test passed iff the last line is the finish string
48 passed = lastline.startswith(self.get_finish_string())
49 return PassFailResult(passed)
H A Dxeonphi.py122 # the test passed iff the last line is the finish string
124 passed=False
128 passed=True
130 return PassFailResult(passed)
/barrelfish-2018-10-04/lib/openssl-1.0.0d/test/
H A Dbntest.com4 $! Exit status = 1 (success) if all tests passed,
27 $ passed = 0
40 $ passed = passed+ 1
49 $ passed = passed- fail
55 $ write sys$output "''passed'/''tests' tests passed"
63 $ if ((tests .gt. 0) .and. (tests .eq. passed))
/barrelfish-2018-10-04/tools/harness/
H A Dresults.py20 def passed(self): member in class:ResultsBase
21 """Returns true iff the test is considered to have passed."""
31 def __init__(self, passed, reason=""):
33 self.passfail = passed
35 def passed(self): member in class:PassFailResult
47 def passed(self): member in class:PassFailMultiResult
65 def passed(self): member in class:RowResults
H A Dharness.py150 # see if it passed
152 passed = result.passed()
154 passed = None
155 if passed is False:
158 elif passed:
H A Dscalebench.py215 'passed': False
229 def write_testcase(self, build, machine, test, path, passed,
237 'passed': passed
246 if not passed:
260 return testcase['passed']
309 passed = self._harness.process_results(test, path)
310 debug.log('result: %s' % ("PASS" if passed else "FAIL"))
320 self.write_testcase(build, machine, test, path, passed,
322 return passed
[all...]

Completed in 155 milliseconds

12345