diff options
author | 2013-08-09 09:09:41 -0700 | |
---|---|---|
committer | 2013-08-09 09:09:41 -0700 | |
commit | 36e58b8ab7f2cf8609ecebb09dd302db3f51f40c (patch) | |
tree | de172b952e7a7930d8f174dbe756df884d1d78be | |
parent | fb17c23ef0efd548f937088b847157d721c37b7a (diff) |
Fix image_test for new small mode API.
Portable build fix.
Change-Id: I89a9c6f6117ac60105a9540467d281bae3b70bdd
-rw-r--r-- | runtime/image_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/image_test.cc b/runtime/image_test.cc index 7f9050564f..334f7abfd3 100644 --- a/runtime/image_test.cc +++ b/runtime/image_test.cc @@ -49,7 +49,7 @@ TEST_F(ImageTest, WriteRead) { #if defined(ART_USE_PORTABLE_COMPILER) // TODO: we disable this for portable so the test executes in a reasonable amount of time. // We shouldn't need to do this. - runtime_->SetSmallMode(true); + runtime_->SetCompilerFilter(Runtime::kInterpretOnly); #endif compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), timings); |