summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2018-11-12 12:45:59 -0800
committerMark Salyzyn <salyzyn@google.com>2018-11-14 09:35:34 -0800
commit9f1cf25332e33247b1b036ce07b32d09e076c346 (patch)
treea20e2aaa8b6fa38a292bb7dd90dfadecf68b2ebd /base
parente77298ce9fd0fbb6e94108f4c49c11f5efa856e1 (diff)
downloadsystem_core-9f1cf25332e33247b1b036ce07b32d09e076c346.tar.gz
system_core-9f1cf25332e33247b1b036ce07b32d09e076c346.tar.bz2
system_core-9f1cf25332e33247b1b036ce07b32d09e076c346.zip
switch to using android-base/file.h instead of android-base/test_utils.h
Test: compile Bug: 119313545 Change-Id: I4f7ad84743e974b4b4d1d7256088f6c8b749a237
Diffstat (limited to 'base')
-rw-r--r--base/file_test.cpp2
-rw-r--r--base/mapped_file_test.cpp1
-rw-r--r--base/utf8_test.cpp2
3 files changed, 1 insertions, 4 deletions
diff --git a/base/file_test.cpp b/base/file_test.cpp
index 67946523c..f64e81c0d 100644
--- a/base/file_test.cpp
+++ b/base/file_test.cpp
@@ -24,8 +24,6 @@
#include <string>
-#include "android-base/test_utils.h"
-
#if !defined(_WIN32)
#include <pwd.h>
#endif
diff --git a/base/mapped_file_test.cpp b/base/mapped_file_test.cpp
index 57fde6f45..7e89723c6 100644
--- a/base/mapped_file_test.cpp
+++ b/base/mapped_file_test.cpp
@@ -25,7 +25,6 @@
#include <string>
#include "android-base/file.h"
-#include "android-base/test_utils.h"
#include "android-base/unique_fd.h"
TEST(mapped_file, smoke) {
diff --git a/base/utf8_test.cpp b/base/utf8_test.cpp
index fcb25c350..472e82c63 100644
--- a/base/utf8_test.cpp
+++ b/base/utf8_test.cpp
@@ -21,8 +21,8 @@
#include <fcntl.h>
#include <stdlib.h>
+#include "android-base/file.h"
#include "android-base/macros.h"
-#include "android-base/test_utils.h"
#include "android-base/unique_fd.h"
namespace android {