diff options
Diffstat (limited to 'runtime/vdex_file_test.cc')
-rw-r--r-- | runtime/vdex_file_test.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/vdex_file_test.cc b/runtime/vdex_file_test.cc index 909e117ccc..ced6e28577 100644 --- a/runtime/vdex_file_test.cc +++ b/runtime/vdex_file_test.cc @@ -36,10 +36,12 @@ TEST_F(VdexFileTest, OpenEmptyVdex) { tmp.GetFilename(), /*writable*/false, /*low_4gb*/false, + /*quicken*/false, &error_msg); EXPECT_TRUE(vdex == nullptr); - vdex = VdexFile::Open(tmp.GetFilename(), /*writable*/false, /*low_4gb*/false, &error_msg); + vdex = VdexFile::Open( + tmp.GetFilename(), /*writable*/false, /*low_4gb*/false, /*quicken*/ false, &error_msg); EXPECT_TRUE(vdex == nullptr); } |