Carl Shapiro | fc322c7 | 2011-07-27 00:20:01 -0700 | [diff] [blame] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
| 2 | |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 3 | #include "runtime.h" |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 4 | |
| 5 | #include "UniquePtr.h" |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 6 | #include "common_test.h" |
Carl Shapiro | fc322c7 | 2011-07-27 00:20:01 -0700 | [diff] [blame] | 7 | |
| 8 | namespace art { |
Carl Shapiro | fc322c7 | 2011-07-27 00:20:01 -0700 | [diff] [blame] | 9 | |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 10 | class RuntimeTest : public CommonTest {}; |
Carl Shapiro | fc322c7 | 2011-07-27 00:20:01 -0700 | [diff] [blame] | 11 | |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 12 | TEST_F(RuntimeTest, ParsedOptions) { |
| 13 | void* test_vfprintf = reinterpret_cast<void*>(0xa); |
| 14 | void* test_abort = reinterpret_cast<void*>(0xb); |
| 15 | void* test_exit = reinterpret_cast<void*>(0xc); |
| 16 | void* null = reinterpret_cast<void*>(NULL); |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 17 | std::vector<const DexFile*> boot_class_path; |
| 18 | boot_class_path.push_back(java_lang_dex_file_.get()); |
| 19 | |
| 20 | Runtime::Options options; |
| 21 | options.push_back(std::make_pair("-Xbootclasspath:class_path_foo:class_path_bar", null)); |
| 22 | options.push_back(std::make_pair("bootclasspath", &boot_class_path)); |
| 23 | options.push_back(std::make_pair("-Xbootimage:boot_image", null)); |
| 24 | options.push_back(std::make_pair("-Xcheck:jni", null)); |
| 25 | options.push_back(std::make_pair("-Xms2048", null)); |
| 26 | options.push_back(std::make_pair("-Xmx4k", null)); |
| 27 | options.push_back(std::make_pair("-Xss1m", null)); |
| 28 | options.push_back(std::make_pair("-Dfoo=bar", null)); |
| 29 | options.push_back(std::make_pair("-Dbaz=qux", null)); |
| 30 | options.push_back(std::make_pair("-verbose:gc,class,jni", null)); |
| 31 | options.push_back(std::make_pair("vfprintf", test_vfprintf)); |
| 32 | options.push_back(std::make_pair("abort", test_abort)); |
| 33 | options.push_back(std::make_pair("exit", test_exit)); |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 34 | UniquePtr<Runtime::ParsedOptions> parsed(Runtime::ParsedOptions::Create(options, false)); |
| 35 | ASSERT_TRUE(parsed.get() != NULL); |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 36 | |
| 37 | EXPECT_EQ(1U, parsed->boot_class_path_.size()); // bootclasspath overrides -Xbootclasspath |
| 38 | EXPECT_STREQ("boot_image", parsed->boot_image_); |
| 39 | EXPECT_EQ(true, parsed->check_jni_); |
| 40 | EXPECT_EQ(2048U, parsed->heap_initial_size_); |
| 41 | EXPECT_EQ(4 * KB, parsed->heap_maximum_size_); |
| 42 | EXPECT_EQ(1 * MB, parsed->stack_size_); |
| 43 | EXPECT_TRUE(test_vfprintf == parsed->hook_vfprintf_); |
| 44 | EXPECT_TRUE(test_exit == parsed->hook_exit_); |
| 45 | EXPECT_TRUE(test_abort == parsed->hook_abort_); |
| 46 | ASSERT_EQ(3U, parsed->verbose_.size()); |
| 47 | EXPECT_TRUE(parsed->verbose_.find("gc") != parsed->verbose_.end()); |
| 48 | EXPECT_TRUE(parsed->verbose_.find("class") != parsed->verbose_.end()); |
| 49 | EXPECT_TRUE(parsed->verbose_.find("jni") != parsed->verbose_.end()); |
| 50 | ASSERT_EQ(2U, parsed->properties_.size()); |
| 51 | EXPECT_EQ("foo=bar", parsed->properties_[0]); |
| 52 | EXPECT_EQ("baz=qux", parsed->properties_[1]); |
| 53 | } |
| 54 | |
| 55 | } // namespace art |