| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "vm/flags.h" |
| 5 #include "platform/assert.h" | 6 #include "platform/assert.h" |
| 6 #include "vm/flags.h" | |
| 7 #include "vm/heap.h" | 7 #include "vm/heap.h" |
| 8 #include "vm/unit_test.h" | 8 #include "vm/unit_test.h" |
| 9 | 9 |
| 10 namespace dart { | 10 namespace dart { |
| 11 | 11 |
| 12 DEFINE_FLAG(bool, basic_flag, true, "Testing of a basic boolean flag."); | 12 DEFINE_FLAG(bool, basic_flag, true, "Testing of a basic boolean flag."); |
| 13 | 13 |
| 14 DECLARE_FLAG(bool, print_flags); | 14 DECLARE_FLAG(bool, print_flags); |
| 15 | 15 |
| 16 VM_UNIT_TEST_CASE(BasicFlags) { | 16 VM_UNIT_TEST_CASE(BasicFlags) { |
| 17 EXPECT_EQ(true, FLAG_basic_flag); | 17 EXPECT_EQ(true, FLAG_basic_flag); |
| 18 EXPECT_EQ(false, FLAG_verbose_gc); | 18 EXPECT_EQ(false, FLAG_verbose_gc); |
| 19 EXPECT_EQ(false, FLAG_print_flags); | 19 EXPECT_EQ(false, FLAG_print_flags); |
| 20 } | 20 } |
| 21 | 21 |
| 22 | |
| 23 DEFINE_FLAG(bool, parse_flag_bool_test, true, "Flags::Parse (bool) testing"); | 22 DEFINE_FLAG(bool, parse_flag_bool_test, true, "Flags::Parse (bool) testing"); |
| 24 DEFINE_FLAG(charp, string_opt_test, NULL, "Testing: string option."); | 23 DEFINE_FLAG(charp, string_opt_test, NULL, "Testing: string option."); |
| 25 DEFINE_FLAG(charp, entrypoint_test, "main", "Testing: entrypoint"); | 24 DEFINE_FLAG(charp, entrypoint_test, "main", "Testing: entrypoint"); |
| 26 DEFINE_FLAG(int, counter, 100, "Testing: int flag"); | 25 DEFINE_FLAG(int, counter, 100, "Testing: int flag"); |
| 27 | 26 |
| 28 VM_UNIT_TEST_CASE(ParseFlags) { | 27 VM_UNIT_TEST_CASE(ParseFlags) { |
| 29 EXPECT_EQ(true, FLAG_parse_flag_bool_test); | 28 EXPECT_EQ(true, FLAG_parse_flag_bool_test); |
| 30 Flags::Parse("no_parse_flag_bool_test"); | 29 Flags::Parse("no_parse_flag_bool_test"); |
| 31 EXPECT_EQ(false, FLAG_parse_flag_bool_test); | 30 EXPECT_EQ(false, FLAG_parse_flag_bool_test); |
| 32 Flags::Parse("parse_flag_bool_test"); | 31 Flags::Parse("parse_flag_bool_test"); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 45 EXPECT_EQ(0, strcmp(FLAG_entrypoint_test, "main")); | 44 EXPECT_EQ(0, strcmp(FLAG_entrypoint_test, "main")); |
| 46 | 45 |
| 47 EXPECT_EQ(100, FLAG_counter); | 46 EXPECT_EQ(100, FLAG_counter); |
| 48 Flags::Parse("counter=-300"); | 47 Flags::Parse("counter=-300"); |
| 49 EXPECT_EQ(-300, FLAG_counter); | 48 EXPECT_EQ(-300, FLAG_counter); |
| 50 Flags::Parse("counter=$300"); | 49 Flags::Parse("counter=$300"); |
| 51 EXPECT_EQ(-300, FLAG_counter); | 50 EXPECT_EQ(-300, FLAG_counter); |
| 52 } | 51 } |
| 53 | 52 |
| 54 } // namespace dart | 53 } // namespace dart |
| OLD | NEW |