commit | 3bc5e74c54dea64773e5c1fcdc083769563f1a36 | [log] [tgz] |
---|---|---|
author | Dimitry Ivanov <dimitry@google.com> | Wed Jun 06 16:07:53 2018 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Jun 06 16:07:53 2018 +0000 |
tree | b5244675c5f3475f0a17fb7bc7cfbf57137382ad | |
parent | 910c11767fe974a1de63e032ec778a071f7c4167 [diff] | |
parent | 3b0a5b73479ec47e033e6d42d24fc5314c49c5be [diff] |
Merge "Relax check on number of segments in a .so file"
diff --git a/tests/dlext_test.cpp b/tests/dlext_test.cpp index 9ed1a56..ec27932 100644 --- a/tests/dlext_test.cpp +++ b/tests/dlext_test.cpp
@@ -1921,7 +1921,7 @@ // some sanity checks.. ASSERT_TRUE(addr_start > 0); ASSERT_TRUE(addr_end > 0); - ASSERT_EQ(3U, maps_to_copy.size()); + ASSERT_TRUE(maps_to_copy.size() > 0); ASSERT_TRUE(ns_get_dlopened_string_addr > addr_start); ASSERT_TRUE(ns_get_dlopened_string_addr < addr_end);