diff options
| author | 2019-03-25 14:31:51 -0700 | |
|---|---|---|
| committer | 2019-03-25 14:31:51 -0700 | |
| commit | d90862d9e3ce6ec59e7a5c06a4103b494daa2bbd (patch) | |
| tree | 6c572169e53299cb9ed60f99096755832078d242 | |
| parent | 7d1506eaf70e32c22de856858fd7bced3da04da1 (diff) | |
| parent | 203201be03e8fe10eadc0237828c83fc80692b74 (diff) | |
Merge "Installd: Fix installd_dexopt_test" am: c75833b1d0
am: 203201be03
Change-Id: If08ece327e3b4720915f7acbc3ca0831399fc590
| -rw-r--r-- | cmds/installd/tests/installd_dexopt_test.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmds/installd/tests/installd_dexopt_test.cpp b/cmds/installd/tests/installd_dexopt_test.cpp index 36d5a600b2..fa2b0d9660 100644 --- a/cmds/installd/tests/installd_dexopt_test.cpp +++ b/cmds/installd/tests/installd_dexopt_test.cpp @@ -936,8 +936,7 @@ class ProfileTest : public DexoptTest { protected: void TransitionToSystemServer() { ASSERT_TRUE(DropCapabilities(kSystemUid, kSystemGid)); - int32_t res = selinux_android_setcontext( - kSystemUid, true, se_info_.c_str(), "system_server"); + int32_t res = selinux_android_setcon("u:r:system_server:s0"); ASSERT_EQ(0, res) << "Failed to setcon " << strerror(errno); } |