blob: 65792c992ff82db83f4058dbb391f875e7dfd83a [file] [log] [blame]
Carl Shapirofc322c72011-07-27 00:20:01 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
Brian Carlstromdb4d5402011-08-09 12:18:28 -07003#include "runtime.h"
Elliott Hughes90a33692011-08-30 13:27:07 -07004
5#include "UniquePtr.h"
Brian Carlstromf734cf52011-08-17 16:28:14 -07006#include "common_test.h"
Carl Shapirofc322c72011-07-27 00:20:01 -07007
8namespace art {
Carl Shapirofc322c72011-07-27 00:20:01 -07009
Brian Carlstromf734cf52011-08-17 16:28:14 -070010class RuntimeTest : public CommonTest {};
Carl Shapirofc322c72011-07-27 00:20:01 -070011
Brian Carlstromf734cf52011-08-17 16:28:14 -070012TEST_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 Carlstromf734cf52011-08-17 16:28:14 -070017 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 Hughes90a33692011-08-30 13:27:07 -070034 UniquePtr<Runtime::ParsedOptions> parsed(Runtime::ParsedOptions::Create(options, false));
35 ASSERT_TRUE(parsed.get() != NULL);
Brian Carlstromf734cf52011-08-17 16:28:14 -070036
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