Home
last modified time | relevance | path

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

/art/test/924-threads/src/art/
DTest924.java251 List<Thread> expectedList = new ArrayList<>(); in doAllThreadsTests() local
254 expectedList.add(findThreadByName(threadsFromTraces, "FinalizerDaemon")); in doAllThreadsTests()
255 expectedList.add(findThreadByName(threadsFromTraces, "FinalizerWatchdogDaemon")); in doAllThreadsTests()
256 expectedList.add(findThreadByName(threadsFromTraces, "HeapTaskDaemon")); in doAllThreadsTests()
257 expectedList.add(findThreadByName(threadsFromTraces, "ReferenceQueueDaemon")); in doAllThreadsTests()
260 expectedList.add(findThreadByName(threadsFromTraces, "TestThread")); in doAllThreadsTests()
261 expectedList.add(findThreadByName(threadsFromTraces, "main")); in doAllThreadsTests()
263 if (!threadList.containsAll(expectedList)) { in doAllThreadsTests()
264 throw new RuntimeException("Expected " + expectedList + " as subset, got " + threadList); in doAllThreadsTests()
266 System.out.println(expectedList); in doAllThreadsTests()