blob: 66c181b72d75e37245d303650adf89090b73b572 [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 Carlstrom69b15fb2011-09-03 12:25:21 -070017
18 std::string lib_core = GetLibCoreDexFileName();
19
20 std::string boot_class_path;
21 boot_class_path += "-Xbootclasspath:";
22 boot_class_path += lib_core;
Brian Carlstromf734cf52011-08-17 16:28:14 -070023
24 Runtime::Options options;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070025 options.push_back(std::make_pair(boot_class_path.c_str(), null));
26 options.push_back(std::make_pair("-classpath", null));
27 options.push_back(std::make_pair(lib_core.c_str(), null));
28 options.push_back(std::make_pair("-cp", null));
29 options.push_back(std::make_pair(lib_core.c_str(), null));
Brian Carlstromf734cf52011-08-17 16:28:14 -070030 options.push_back(std::make_pair("-Xbootimage:boot_image", null));
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070031 options.push_back(std::make_pair("-Ximage:image_1", null));
32 options.push_back(std::make_pair("-Ximage:image_2", null));
Brian Carlstromf734cf52011-08-17 16:28:14 -070033 options.push_back(std::make_pair("-Xcheck:jni", null));
34 options.push_back(std::make_pair("-Xms2048", null));
35 options.push_back(std::make_pair("-Xmx4k", null));
36 options.push_back(std::make_pair("-Xss1m", null));
37 options.push_back(std::make_pair("-Dfoo=bar", null));
38 options.push_back(std::make_pair("-Dbaz=qux", null));
39 options.push_back(std::make_pair("-verbose:gc,class,jni", null));
40 options.push_back(std::make_pair("vfprintf", test_vfprintf));
41 options.push_back(std::make_pair("abort", test_abort));
42 options.push_back(std::make_pair("exit", test_exit));
Elliott Hughes90a33692011-08-30 13:27:07 -070043 UniquePtr<Runtime::ParsedOptions> parsed(Runtime::ParsedOptions::Create(options, false));
44 ASSERT_TRUE(parsed.get() != NULL);
Brian Carlstromf734cf52011-08-17 16:28:14 -070045
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070046 EXPECT_EQ(1U, parsed->boot_class_path_.size());
47 EXPECT_EQ(1U, parsed->class_path_.size());
Brian Carlstromf734cf52011-08-17 16:28:14 -070048 EXPECT_STREQ("boot_image", parsed->boot_image_);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070049 EXPECT_EQ(2U, parsed->images_.size());
50 EXPECT_STREQ("image_1", parsed->images_[0]);
51 EXPECT_STREQ("image_2", parsed->images_[1]);
Brian Carlstromf734cf52011-08-17 16:28:14 -070052 EXPECT_EQ(true, parsed->check_jni_);
53 EXPECT_EQ(2048U, parsed->heap_initial_size_);
54 EXPECT_EQ(4 * KB, parsed->heap_maximum_size_);
55 EXPECT_EQ(1 * MB, parsed->stack_size_);
56 EXPECT_TRUE(test_vfprintf == parsed->hook_vfprintf_);
57 EXPECT_TRUE(test_exit == parsed->hook_exit_);
58 EXPECT_TRUE(test_abort == parsed->hook_abort_);
59 ASSERT_EQ(3U, parsed->verbose_.size());
60 EXPECT_TRUE(parsed->verbose_.find("gc") != parsed->verbose_.end());
61 EXPECT_TRUE(parsed->verbose_.find("class") != parsed->verbose_.end());
62 EXPECT_TRUE(parsed->verbose_.find("jni") != parsed->verbose_.end());
63 ASSERT_EQ(2U, parsed->properties_.size());
64 EXPECT_EQ("foo=bar", parsed->properties_[0]);
65 EXPECT_EQ("baz=qux", parsed->properties_[1]);
66}
67
68} // namespace art