diff options
| author | Andreas Gampe <agampe@google.com> | 2014-09-09 21:46:14 -0700 |
|---|---|---|
| committer | Andreas Gampe <agampe@google.com> | 2014-09-10 05:09:21 +0000 |
| commit | f00de413ed451f1a90d614ea5dce8b3d685e877c (patch) | |
| tree | 2ae8da428c6d33ffd09f47a5edd125eba3a19f71 /libnativebridge/tests | |
| parent | 41df668c7be461f461b3d70951dee7634ded868f (diff) | |
| download | system_core-f00de413ed451f1a90d614ea5dce8b3d685e877c.zip system_core-f00de413ed451f1a90d614ea5dce8b3d685e877c.tar.gz system_core-f00de413ed451f1a90d614ea5dce8b3d685e877c.tar.bz2 | |
DO NOT MERGE Libnativebridge: Temporarily change back to late dlopen
Bug: 17440362
Change-Id: Ifceeecd39d4ffd948f62212ebb5280ebec9bf6ff
Diffstat (limited to 'libnativebridge/tests')
| -rw-r--r-- | libnativebridge/tests/ValidNameNativeBridge_test.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libnativebridge/tests/ValidNameNativeBridge_test.cpp b/libnativebridge/tests/ValidNameNativeBridge_test.cpp index 690be4a..b28f5b2 100644 --- a/libnativebridge/tests/ValidNameNativeBridge_test.cpp +++ b/libnativebridge/tests/ValidNameNativeBridge_test.cpp @@ -27,9 +27,12 @@ TEST_F(NativeBridgeTest, ValidName) { // Now check what happens on LoadNativeBridge. EXPECT_EQ(false, NativeBridgeError()); LoadNativeBridge(kTestName, nullptr); + // TODO: Remove this call. b/17440362 + InitializeNativeBridge(); // This will lead to an error as the library doesn't exist. EXPECT_EQ(true, NativeBridgeError()); - EXPECT_EQ(false, NativeBridgeAvailable()); + // TODO: Test again. b/17440362 +// EXPECT_EQ(false, NativeBridgeAvailable()); } } // namespace android |
