aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitry Ivanov <dimitry@google.com>2016-08-26 21:57:40 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2016-08-26 21:57:40 +0000
commitabe80314ebc39dec4c2d6e65fb11c1e16e3cfe09 (patch)
tree8f8895b634502bd8b510b8d5642849ccdf873cc8
parentd5ac5ffa4339aa07a02c971b009f56b18d722ca5 (diff)
parent23af6af7c205f0aff0829c08a088b2dd79e9ffe0 (diff)
downloadbionic-abe80314ebc39dec4c2d6e65fb11c1e16e3cfe09.tar.gz
Merge "Fix dlext.ns_smoke test" into nyc-mr1-dev
-rw-r--r--tests/dlext_test.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/dlext_test.cpp b/tests/dlext_test.cpp
index ee61d5f9b..5501c8e2f 100644
--- a/tests/dlext_test.cpp
+++ b/tests/dlext_test.cpp
@@ -628,7 +628,9 @@ TEST(dlext, ns_smoke) {
ASSERT_FALSE(android_init_namespaces(path.c_str(), nullptr));
ASSERT_STREQ("android_init_namespaces failed: error initializing public namespace: "
- "\"libnstest_public.so\" was not found in the default namespace", dlerror());
+ "a library with soname \"libnstest_public.so\" was not found in the "
+ "default namespace",
+ dlerror());
const std::string lib_path = std::string(getenv("ANDROID_DATA")) + NATIVE_TESTS_PATH;