From 6ea3164ec9ac72d6411abc4a08b1ba34b7550e50 Mon Sep 17 00:00:00 2001 From: Michael Lee Date: Fri, 29 Jan 2016 10:32:31 -0800 Subject: [PATCH] Handle tmp dir on Android Summary: There is no universally accessible tmpdir on Android which means mkstemp fails. This diff calls a function that the test runner should provide to fill a valid temporary directory. Reviewed By: yangchi Differential Revision: D2842034 fb-gh-sync-id: 9b826757bd750af016a18adccd5a21174be644d6 --- folly/test/FBStringTest.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/folly/test/FBStringTest.cpp b/folly/test/FBStringTest.cpp index d9b5948f..78d6514a 100644 --- a/folly/test/FBStringTest.cpp +++ b/folly/test/FBStringTest.cpp @@ -33,6 +33,7 @@ #include #include #include +#include using namespace std; using namespace folly; -- 2.34.1