aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJorge Lucangeli Obes <jorgelo@google.com>2018-01-25 14:06:42 -0500
committerJorge Lucangeli Obes <jorgelo@google.com>2018-01-25 15:22:53 -0500
commit1ed75bc11ec97be57fc032cbbb412aad143b54f8 (patch)
tree3243b4e6f3812c44ddda33ca261f74f56cf5ffeb
parent06cacc9c74392d51274e4340f5c0bca40ae492a6 (diff)
downloadminijail-1ed75bc11ec97be57fc032cbbb412aad143b54f8.tar.gz
minijail: Prefix unit test binaries to avoid confusion.
These unit test binaries will be listed alongside many others from Android. Prefix them to avoid confusion. Bug: 72386870 Test: make, check host and target output. Change-Id: I56779fa468c43924604d3dc97e4b8534b4888508
-rw-r--r--Android.bp12
1 files changed, 6 insertions, 6 deletions
diff --git a/Android.bp b/Android.bp
index 6fb7476..911e0fc 100644
--- a/Android.bp
+++ b/Android.bp
@@ -210,13 +210,13 @@ cc_test {
// System functionality unit tests using gtest.
//
// For a device, run with:
-// adb shell /data/nativetest/system_unittest_gtest/system_unittest_gtest
+// adb shell /data/nativetest/mj_system_unittest_gtest/mj_system_unittest_gtest
//
// For host, run with:
-// out/host/linux-x86/nativetest(64)/system_unittest_gtest/system_unittest_gtest
+// out/host/linux-x86/nativetest(64)/mj_system_unittest_gtest/mj_system_unittest_gtest
// =========================================================
cc_test {
- name: "system_unittest_gtest",
+ name: "mj_system_unittest_gtest",
defaults: ["libminijail_flags"],
host_supported: true,
@@ -239,13 +239,13 @@ cc_test {
// Utility functionality unit tests using gtest.
//
// For a device, run with:
-// adb shell /data/nativetest/util_unittest_gtest/util_unittest_gtest
+// adb shell /data/nativetest/mj_util_unittest_gtest/mj_util_unittest_gtest
//
// For host, run with:
-// out/host/linux-x86/nativetest(64)/util_unittest_gtest/util_unittest_gtest
+// out/host/linux-x86/nativetest(64)/mj_util_unittest_gtest/mj_util_unittest_gtest
// =========================================================
cc_test {
- name: "util_unittest_gtest",
+ name: "mj_util_unittest_gtest",
defaults: ["libminijail_flags"],
host_supported: true,