Home
last modified time | relevance | path

Searched refs:testResult (Results 1 – 12 of 12) sorted by relevance

/test/mlts/benchmark/src/com/android/nn/crashtest/app/
DCrashTestStatus.java52 private void handleCompletionNotification(TestResult testResult, in handleCompletionNotification() argument
56 testResult, in handleCompletionNotification()
58 if (mTestResult.compareAndSet(null, testResult)) { in handleCompletionNotification()
61 String.format("Test completed with result %s and msg: %s.\n", testResult, in handleCompletionNotification()
64 … mDisplayMessages.accept(String.format("Test completed with result %s\n", testResult)); in handleCompletionNotification()
DNNPerformanceDegradationTest.java84 CrashTestStatus.TestResult testResult = getActivity().testResult(); in shouldNotDegradePerformanceOverThreshold() local
86 testResult); in shouldNotDegradePerformanceOverThreshold()
DNNParallelInferenceTest.java92 CrashTestStatus.TestResult testResult = getActivity().testResult(); in shouldNotFailWithParallelThreads() local
94 testResult); in shouldNotFailWithParallelThreads()
DNNClientEarlyTerminationTest.java118 CrashTestStatus.TestResult testResult = activity.testResult(); in testDriverDoesNotFailWithParallelThreads() local
123 testResult); in testDriverDoesNotFailWithParallelThreads()
DNNCrashTestActivity.java66 public CrashTestStatus.TestResult testResult() { in testResult() method in NNCrashTestActivity
DNNMultipleProcessTest.java104 assertEquals(SUCCESS, activity.testResult()); in testDriverDoesNotFailWithParallelWorkload()
DNNRandomGraphTest.java113 assertEquals(SUCCESS, activity.testResult()); in testDriverDoesNotFailWithParallelWorkload()
DNNMemoryMappedModelCompilationTest.java111 Assert.assertEquals(CrashTestStatus.TestResult.SUCCESS, activity.testResult()); in testDriverDoesNotFailWithParallelThreads()
DNNParallelTestActivity.java133 public CrashTestStatus.TestResult testResult() { in testResult() method in NNParallelTestActivity
/test/mlts/benchmark/src/com/android/nn/crashtest/core/
DCrashTestService.java114 final Optional<String> testResult = crashTest.call(); in onBind() local
116 testResult.orElse("success"))); in onBind()
117 notify(testResult.isPresent() ? FAILURE : SUCCESS, testResult.orElse(null)); in onBind()
/test/mlts/benchmark/src/com/android/nn/crashtest/core/test/
DRunModelsInMultipleProcesses.java156 int testResult = multiProcessTest.waitFor(); in call() local
157 Log.i(TAG, String.format("Test process returned %d", testResult)); in call()
158 if (testResult == 0) { in call()
161 return failure(String.format("Test failed with return code %d", testResult)); in call()
DRunModelsInParallel.java187 testResult -> !testResult).count(); in completedSuccessfully()