Home
last modified time | relevance | path

Searched refs:testThread (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/javatests/com/android/tradefed/invoker/logger/
DInvocationMetricLoggerTest.java60 Thread testThread = new Thread(testGroup, runnable); in logMetric() local
61 testThread.setName("InvocationMetricLoggerTest-test-thread"); in logMetric()
62 testThread.setDaemon(true); in logMetric()
63 testThread.start(); in logMetric()
64 testThread.join(10000); in logMetric()
DTfObjectTrackerTest.java99 Thread testThread = new Thread(testGroup, runnable); in logMetric() local
100 testThread.setName("TfObjectTrackerTest-test-thread"); in logMetric()
101 testThread.setDaemon(true); in logMetric()
102 testThread.start(); in logMetric()
103 testThread.join(10000); in logMetric()
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DInvocationExecution.java1494 TestThread testThread = new TestThread(info, listener, test); in runTestThread() local
1495 TestPhaseMonitor testPhaseMonitor = new TestPhaseMonitor(testThread); in runTestThread()
1498 testThread.start(); in runTestThread()
1500 testThread.join(); in runTestThread()
1506 if (testThread.getLastThrownException() != null) { in runTestThread()
1507 throw testThread.getLastThrownException(); in runTestThread()