Home
last modified time | relevance | path

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

/tools/asuite/atest/unittest_data/test_mapping/folder6/
Dtest_mapping_sample_golden11 "path": "path1//path2//path3"
Dtest_mapping_sample_with_comments13 "path": "path1//path2//path3"#comment12
/tools/tradefederation/core/javatests/res/testdata/
Dtest_mapping_golden111 "path": "path1//path2//path3"
Dtest_mapping_with_import_122 "path": "path2"
Dtest_mapping_with_comments113 "path": "path1//path2//path3"#comment12
/tools/tradefederation/core/javatests/com/android/tradefed/util/testmapping/
DTestMappingTest.java737 File path2 = new File(tempDir.getAbsolutePath() + "/path2"); in testIncludeImports() local
738 path2.mkdir(); in testIncludeImports()
742 FileUtil.saveResourceFile(resourceStream, path2, TEST_MAPPING); in testIncludeImports()
744 File path3 = new File(path2.getAbsolutePath() + "/path3"); in testIncludeImports()
754 Arrays.asList(path1, path2, new File(tempDir, DISABLED_PRESUBMIT_TESTS)); in testIncludeImports()
835 File path2 = new File(tempDir.getAbsolutePath() + "/path2"); in testExcludeImports() local
836 path2.mkdir(); in testExcludeImports()
840 FileUtil.saveResourceFile(resourceStream, path2, TEST_MAPPING); in testExcludeImports()
842 File path3 = new File(path2.getAbsolutePath() + "/path3"); in testExcludeImports()
852 Arrays.asList(path1, path2, new File(tempDir, DISABLED_PRESUBMIT_TESTS)); in testExcludeImports()
/tools/tradefederation/core/javatests/com/android/tradefed/device/metric/
DGcovCodeCoverageCollectorTest.java159 Path path2 = filesystem.getPath("/path/to/.hidden/coverage2.gcda"); in test_logsCoverageZip() local
160 assertThat(ByteString.readFrom(Files.newInputStream(path2))) in test_logsCoverageZip()
DJavaCodeCoverageCollectorTest.java388 String path2 = "path/to/coverage2.ec"; in testStreamingCoverage_logsReceived() local
394 path2, contents2)); in testStreamingCoverage_logsReceived()
/tools/repohooks/
DREADME.md137 With a commit that changes `path1/file1` and `path2/file2`, then this will run
139 * ['ls', 'path1/file1', 'path2/file2']
140 * ['check', '--file=path1/file1', '--file=path2/file2']
141 * ['check', '--file', 'path1/file1', '--file', 'path2/file2']
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/suite/
DTestMappingSuiteRunnerTest.java1036 File path2 = new File(tempDir.getAbsolutePath() + "/path2"); in testLoadTests_testMappingsIncludeImports() local
1037 path2.mkdir(); in testLoadTests_testMappingsIncludeImports()
1041 FileUtil.saveResourceFile(resourceStream, path2, TEST_MAPPING); in testLoadTests_testMappingsIncludeImports()
1043 File path3 = new File(path2.getAbsolutePath() + "/path3"); in testLoadTests_testMappingsIncludeImports()
1053 Arrays.asList(path1, path2, new File(tempDir, DISABLED_PRESUBMIT_TESTS)); in testLoadTests_testMappingsIncludeImports()
/tools/asuite/atest/
Dbazel_mode.py1454 def _is_relative_to(path1: pathlib.Path, path2: pathlib.Path) -> bool:
1459 path1.relative_to(path2)