From 4fbaa509eb1b9fe8121dc65dea83522a5c844d95 Mon Sep 17 00:00:00 2001 From: Evgeniy Stepanov Date: Mon, 10 Sep 2012 10:32:29 +0000 Subject: [PATCH] GTest on Android needs a custom tmpdir path. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163501 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/unittest/googletest/gtest-port.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/utils/unittest/googletest/gtest-port.cc b/utils/unittest/googletest/gtest-port.cc index 07e5bb3c0d6..3c32ff1ac1e 100644 --- a/utils/unittest/googletest/gtest-port.cc +++ b/utils/unittest/googletest/gtest-port.cc @@ -505,6 +505,10 @@ class CapturedStream { GTEST_CHECK_(captured_fd != -1) << "Unable to open temporary file " << temp_file_path; filename_ = temp_file_path; +#elif GTEST_OS_LINUX_ANDROID + char name_template[] = "/sdcard/captured_stderr.XXXXXX"; + const int captured_fd = mkstemp(name_template); + filename_ = name_template; # else // There's no guarantee that a test has write access to the // current directory, so we create the temporary file in the /tmp -- 2.34.1