Home
last modified time | relevance | path

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

/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DGoogleBenchmarkTestTest.java289 assertFalse(mGoogleBenchmarkTest.shouldSkipFile("/some/path/file/binary")); in testFileExclusionRegexFilter_skipMatched()
290 assertFalse(mGoogleBenchmarkTest.shouldSkipFile("/some/path/file/random.dat")); in testFileExclusionRegexFilter_skipMatched()
291 assertTrue(mGoogleBenchmarkTest.shouldSkipFile("/some/path/file/test.txt")); in testFileExclusionRegexFilter_skipMatched()
293 assertTrue(mGoogleBenchmarkTest.shouldSkipFile("/some/path/file/random.config")); in testFileExclusionRegexFilter_skipMatched()
304 assertFalse(mGoogleBenchmarkTest.shouldSkipFile("/some/path/file/binary")); in testFileExclusionRegexFilter_skipMultiMatched()
305 assertTrue(mGoogleBenchmarkTest.shouldSkipFile("/some/path/file/random.dat")); in testFileExclusionRegexFilter_skipMultiMatched()
306 assertTrue(mGoogleBenchmarkTest.shouldSkipFile("/some/path/file/test.txt")); in testFileExclusionRegexFilter_skipMultiMatched()
308 assertTrue(mGoogleBenchmarkTest.shouldSkipFile("/some/path/file/random.config")); in testFileExclusionRegexFilter_skipMultiMatched()
314 assertTrue(mGoogleBenchmarkTest.shouldSkipFile("/some/path/file/random.config")); in testFileExclusionRegexFilter_skipDefaultMatched()
316 assertFalse(mGoogleBenchmarkTest.shouldSkipFile("/some/path/file/random.configs")); in testFileExclusionRegexFilter_skipDefaultMatched()
[all …]
DGTestTest.java330 assertFalse(mGTest.shouldSkipFile("/test_file")); in testFileExclusionRegexFilter_emptyfilters()
337 assertTrue(mGTest.shouldSkipFile(null)); in testFileExclusionRegexFilter_invalidInputString()
338 assertTrue(mGTest.shouldSkipFile("")); in testFileExclusionRegexFilter_invalidInputString()
354 assertFalse(mGTest.shouldSkipFile("/some/path/file/run_me")); in testFileExclusionRegexFilter_skipMatched()
355 assertFalse(mGTest.shouldSkipFile("/some/path/file/run_me2")); in testFileExclusionRegexFilter_skipMatched()
356 assertTrue(mGTest.shouldSkipFile("/some/path/file/run_me.not")); in testFileExclusionRegexFilter_skipMatched()
358 assertTrue(mGTest.shouldSkipFile("/some/path/file/run_me.so")); in testFileExclusionRegexFilter_skipMatched()
376 assertFalse(mGTest.shouldSkipFile("/some/path/file/run_me")); in testFileExclusionRegexFilter_skipMultiMatched()
377 assertTrue(mGTest.shouldSkipFile("/some/path/file/run_me.not")); in testFileExclusionRegexFilter_skipMultiMatched()
378 assertTrue(mGTest.shouldSkipFile("/some/path/file/run_me.not2")); in testFileExclusionRegexFilter_skipMultiMatched()
/tools/tradefederation/core/src/com/android/tradefed/testtype/
DGoogleBenchmarkTest.java165 if (shouldSkipFile(root)) { in doRunAllTestsInSubdirectory()
216 protected boolean shouldSkipFile(String fullPath) { in shouldSkipFile() method in GoogleBenchmarkTest
DGTest.java138 if (shouldSkipFile(root)) { in doRunAllTestsInSubdirectory()
169 protected boolean shouldSkipFile(String fullPath) throws DeviceNotAvailableException { in shouldSkipFile() method in GTest