| Index: base/android/path_utils_unittest.cc
|
| diff --git a/base/android/path_utils_unittest.cc b/base/android/path_utils_unittest.cc
|
| index e86cd491247eb927d9522c775b46ed25f123cde9..faa00b5e495d37aa3eb129414bbcdce01e58e4b6 100644
|
| --- a/base/android/path_utils_unittest.cc
|
| +++ b/base/android/path_utils_unittest.cc
|
| @@ -27,5 +27,13 @@ TEST_F(PathUtilsTest, TestGetCacheDirectory) {
|
| GetCacheDirectory().c_str());
|
| }
|
|
|
| +TEST_F(PathUtilsTest, TestGetNativeLibraryDirectory) {
|
| + // The string comes from the Java side and depends on the APK
|
| + // we are running in. Assumes that we are packaged in
|
| + // org.chromium.native_test
|
| + EXPECT_STREQ("/data/data/org.chromium.native_test/lib",
|
| + GetNativeLibraryDirectory().c_str());
|
| +}
|
| +
|
| } // namespace android
|
| } // namespace base
|
|
|