Home
last modified time | relevance | path

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

/external/vogar/src/vogar/target/
DTestEnvironment.java68 private final String tmpDir; field in TestEnvironment
71 this.tmpDir = System.getProperty("java.io.tmpdir"); in TestEnvironment()
72 if (tmpDir == null || tmpDir.length() == 0) { in TestEnvironment()
73 throw new AssertionError("tmpDir is null or empty: " + tmpDir); in TestEnvironment()
83 System.setProperty("java.io.tmpdir", tmpDir); in TestEnvironment()
99 String dirName = tmpDir + "/" + subDirName; in createTempDirectory()
114 System.setProperty("java.io.tmpdir", tmpDir); in reset()
140 userHome = tmpDir + "/user.home"; in reset()
/external/deqp/scripts/
Dcheck_build_sanity.py31 def __init__ (self, srcDir, tmpDir): argument
33 self.tmpDir = tmpDir
109 buildDir = os.path.join(env.tmpDir, self.buildDir)
187 lambda env: ["--build-dir", os.path.join(env.tmpDir, "android-mustpass")]),
191 lambda env: ["--build-dir", os.path.join(env.tmpDir, "vulkan-mustpass")]),
195 lambda env: ["--build-dir", os.path.join(env.tmpDir, "spirv-binaries")]),
261 env = Environment(args.srcDir, args.tmpDir)
/external/boringssl/src/util/
Drun_android_tests.go199 tmpDir, err := ioutil.TempDir("", "boringssl-android")
204 defer os.RemoveAll(tmpDir)
234 …if err := goTool("build", "-o", filepath.Join(tmpDir, "util/all_tests"), "util/all_tests.go"); err…
265 …if err := goTool("test", "-c", "-o", filepath.Join(tmpDir, "ssl/test/runner/runner"), "./ssl/test/…
273 …if err := copyFile(filepath.Join(tmpDir, "build", binary), filepath.Join(*buildDir, binary)); err …
281 if err := copyFile(filepath.Join(tmpDir, file), file); err != nil {
288 if err := adb("push", "-p", tmpDir, "/data/local/tmp/boringssl-tmp"); err != nil {
/external/skqp/tests/
DPDFDocumentTest.cpp43 SkString tmpDir = skiatest::GetTmpDir(); in test_abortWithFile() local
45 if (tmpDir.isEmpty()) { in test_abortWithFile()
50 SkString path = SkOSPath::Join(tmpDir.c_str(), "aborted.pdf"); in test_abortWithFile()
76 SkString tmpDir = skiatest::GetTmpDir(); in test_file() local
77 if (tmpDir.isEmpty()) { in test_file()
82 SkString path = SkOSPath::Join(tmpDir.c_str(), "file.pdf"); in test_file()
DStreamBufferTest.cpp80 SkString tmpDir = skiatest::GetTmpDir(); in DEF_TEST() local
84 if (!tmpDir.isEmpty()) { in DEF_TEST()
85 path = SkOSPath::Join(tmpDir.c_str(), subdir); in DEF_TEST()
106 if (tmpDir.isEmpty() && f.skipIfNoTmpDir) { in DEF_TEST()
Dskia_test.cpp153 SkString tmpDir = skiatest::GetTmpDir(); in main() local
154 if (!tmpDir.isEmpty()) { in main()
155 header.appendf(" --tmpDir %s", tmpDir.c_str()); in main()
DStreamTest.cpp44 static void test_filestreams(skiatest::Reporter* reporter, const char* tmpDir) { in test_filestreams() argument
45 SkString path = SkOSPath::Join(tmpDir, "wstream_test"); in test_filestreams()
132 SkString tmpDir = skiatest::GetTmpDir(); in TestWStream() local
133 if (!tmpDir.isEmpty()) { in TestWStream()
134 test_filestreams(reporter, tmpDir.c_str()); in TestWStream()
DTest.cpp16 DEFINE_string2(tmpDir, t, nullptr, "Temp directory to use.");
DDataRefTest.cpp147 SkString tmpDir = skiatest::GetTmpDir(); in test_files() local
148 if (tmpDir.isEmpty()) { in test_files()
152 SkString path = SkOSPath::Join(tmpDir.c_str(), "data_test"); in test_files()
/external/skia/tests/
DPDFDocumentTest.cpp43 SkString tmpDir = skiatest::GetTmpDir(); in test_abortWithFile() local
45 if (tmpDir.isEmpty()) { in test_abortWithFile()
50 SkString path = SkOSPath::Join(tmpDir.c_str(), "aborted.pdf"); in test_abortWithFile()
76 SkString tmpDir = skiatest::GetTmpDir(); in test_file() local
77 if (tmpDir.isEmpty()) { in test_file()
82 SkString path = SkOSPath::Join(tmpDir.c_str(), "file.pdf"); in test_file()
DStreamBufferTest.cpp80 SkString tmpDir = skiatest::GetTmpDir(); in DEF_TEST() local
84 if (!tmpDir.isEmpty()) { in DEF_TEST()
85 path = SkOSPath::Join(tmpDir.c_str(), subdir); in DEF_TEST()
106 if (tmpDir.isEmpty() && f.skipIfNoTmpDir) { in DEF_TEST()
Dskia_test.cpp153 SkString tmpDir = skiatest::GetTmpDir(); in main() local
154 if (!tmpDir.isEmpty()) { in main()
155 header.appendf(" --tmpDir %s", tmpDir.c_str()); in main()
DStreamTest.cpp47 static void test_filestreams(skiatest::Reporter* reporter, const char* tmpDir) { in test_filestreams() argument
48 SkString path = SkOSPath::Join(tmpDir, "wstream_test"); in test_filestreams()
135 SkString tmpDir = skiatest::GetTmpDir(); in TestWStream() local
136 if (!tmpDir.isEmpty()) { in TestWStream()
137 test_filestreams(reporter, tmpDir.c_str()); in TestWStream()
DTest.cpp16 DEFINE_string2(tmpDir, t, nullptr, "Temp directory to use.");
DDataRefTest.cpp147 SkString tmpDir = skiatest::GetTmpDir(); in test_files() local
148 if (tmpDir.isEmpty()) { in test_files()
152 SkString path = SkOSPath::Join(tmpDir.c_str(), "data_test"); in test_files()
/external/shflags/src/
Dshflags_test_helpers48 tmpDir=${SHUNIT_TMPDIR}
49 stdoutF="${tmpDir}/stdout"
50 stderrF="${tmpDir}/stderr"
51 returnF="${tmpDir}/return"
52 expectedF="${tmpDir}/expected"
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DFileClientSessionCacheTest.java27 String tmpDir = System.getProperty("java.io.tmpdir"); in testMaxSize() local
28 if (tmpDir == null) { in testMaxSize()
31 File cacheDir = new File(tmpDir in testMaxSize()
/external/llvm/utils/lit/lit/
DTestRunner.py603 tmpDir = os.path.join(execdir, 'Output')
604 tmpBase = os.path.join(tmpDir, execbase)
605 return tmpDir, tmpBase
607 def getDefaultSubstitutions(test, tmpDir, tmpBase, normalize_slashes=False): argument
615 tmpDir = tmpDir.replace('\\', '/')
627 ('%T', tmpDir),
636 ('%/T', tmpDir.replace('\\', '/')),
646 ('%:T', re.sub(r'^(.):', r'\1', tmpDir)),
654 ('%:T', tmpDir),
929 tmpDir, tmpBase = getTempPaths(test)
[all …]
/external/testng/src/test/java/test/failures/
DBaseFailuresTest.java87 File tmpDir = new File(outputDir); in verify() local
88 tmpDir.delete(); in verify()
/external/swiftshader/third_party/LLVM/utils/lit/lit/
DTestRunner.py400 tmpDir = os.path.join(execdir, 'Output')
401 tmpBase = os.path.join(tmpDir, execbase)
409 tmpDir = tmpDir.replace('\\', '/')
419 ('%T', tmpDir),
/external/icu/icu4c/source/tools/pkgdata/
Dpkgdata.cpp438 o.tmpDir = options[TEMPDIR].value; in main()
440 o.tmpDir = o.targetDir; in main()
564 char tmpDir[SMALL_BUFFER_MAX_SIZE] = ""; in pkg_executeOptions() local
592 uprv_strcpy(tmpDir, o->tmpDir); in pkg_executeOptions()
593 uprv_strcat(tmpDir, PKGDATA_FILE_SEP_STRING); in pkg_executeOptions()
595 uprv_strcpy(datFileNamePath, tmpDir); in pkg_executeOptions()
721 writeAssemblyCode(datFileNamePath, o->tmpDir, o->entryName, NULL, gencFilePath); in pkg_executeOptions()
756 …writeObjectCode(datFileNamePath, o->tmpDir, o->entryName, (optMatchArch[0] == 0 ? NULL : optMatchA… in pkg_executeOptions()
1588 o->tmpDir, in pkg_createWithoutAssemblyCode()
1625 …createCommonDataFile(o->tmpDir, o->shortName, o->entryName, NULL, o->srcDir, o->comment, o->fileLi… in pkg_createWithoutAssemblyCode()
[all …]
Dpkgtypes.h118 const char *tmpDir; member
/external/libcxx/utils/libcxx/test/
Dformat.py120 tmpDir, tmpBase = lit.TestRunner.getTempPaths(test)
121 substitutions = lit.TestRunner.getDefaultSubstitutions(test, tmpDir,
/external/google-breakpad/src/client/mac/sender/
Duploader.mm281 char *tmpDir = mkdtemp(tmpDirTemplate);
318 sprintf(tmpFilenameTemplate,"%s/%s-XXXX", tmpDir,
340 [tarTask setCurrentDirectoryPath:[NSString stringWithUTF8String:tmpDir]];
354 NSString *logTarFile = [NSString stringWithFormat:@"%s/log.tar.bz2",tmpDir];