aboutsummaryrefslogtreecommitdiff
path: root/chromeos
diff options
context:
space:
mode:
authorDaniel Erat <derat@google.com>2015-08-19 16:25:34 -0600
committerDaniel Erat <derat@google.com>2015-08-19 16:25:34 -0600
commit2908f10c54864392a9826fb136eac4997fe785ae (patch)
tree86ac0a04ff4c3c17d82481e76d30b1c17ef43fb1 /chromeos
parent92d2cebf70919c9b1d0e6779837d245859736c98 (diff)
downloadlibbrillo-2908f10c54864392a9826fb136eac4997fe785ae.tar.gz
Use __ANDROID__ instead of __BRILLO__.
__ANDROID__ is defined automatically by the toolchain. Bug: 23358460 Change-Id: I125d56638f06f0eb10ba0cde147ab835522959f1
Diffstat (limited to 'chromeos')
-rw-r--r--chromeos/process_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromeos/process_unittest.cc b/chromeos/process_unittest.cc
index c74e1ed..1d83cb7 100644
--- a/chromeos/process_unittest.cc
+++ b/chromeos/process_unittest.cc
@@ -17,7 +17,7 @@
using base::FilePath;
// This test assumes the following standard binaries are installed.
-#if defined(__BRILLO__)
+#if defined(__ANDROID__)
# define SYSTEM_PREFIX "/system"
#else
# define SYSTEM_PREFIX ""
@@ -266,7 +266,7 @@ TEST_F(ProcessTest, NoParams) {
EXPECT_EQ(-1, process_.Run());
}
-#if !defined(__BRILLO__) // Bionic intercepts the segfault in brillo
+#if !defined(__BIONIC__) // Bionic intercepts the segfault on Android.
TEST_F(ProcessTest, SegFaultHandling) {
process_.AddArg(kBinSh);
process_.AddArg("-c");