From 9583fbcf597eff6d0b3c5359b8e8d5f70ed82c40 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Fri, 28 Feb 2014 15:21:07 +0000 Subject: Remove oat file location in the image. The oat file is now always in the same directory, and has the same name as the image file. Only difference is the extension. This also removes the need for host-prefix. Change-Id: I16d1f7aeb1d58372d41921694664e9c321afc1ad --- runtime/parsed_options_test.cc | 2 -- 1 file changed, 2 deletions(-) (limited to 'runtime/parsed_options_test.cc') diff --git a/runtime/parsed_options_test.cc b/runtime/parsed_options_test.cc index 58353b13a2..7f293cdb5a 100644 --- a/runtime/parsed_options_test.cc +++ b/runtime/parsed_options_test.cc @@ -50,7 +50,6 @@ TEST_F(ParsedOptionsTest, ParsedOptions) { options.push_back(std::make_pair("-Dfoo=bar", null)); options.push_back(std::make_pair("-Dbaz=qux", null)); options.push_back(std::make_pair("-verbose:gc,class,jni", null)); - options.push_back(std::make_pair("host-prefix", "host_prefix")); options.push_back(std::make_pair("vfprintf", test_vfprintf)); options.push_back(std::make_pair("abort", test_abort)); options.push_back(std::make_pair("exit", test_exit)); @@ -65,7 +64,6 @@ TEST_F(ParsedOptionsTest, ParsedOptions) { EXPECT_EQ(4 * KB, parsed->heap_maximum_size_); EXPECT_EQ(1 * MB, parsed->stack_size_); EXPECT_EQ(0.75, parsed->heap_target_utilization_); - EXPECT_EQ("host_prefix", parsed->host_prefix_); EXPECT_TRUE(test_vfprintf == parsed->hook_vfprintf_); EXPECT_TRUE(test_exit == parsed->hook_exit_); EXPECT_TRUE(test_abort == parsed->hook_abort_); -- cgit v1.2.3-59-g8ed1b