| 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 "platform/assert.h" | 5 #include "platform/assert.h" |
| 6 #include "vm/flags.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 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 | 22 |
| 23 DEFINE_FLAG(bool, parse_flag_bool_test, true, "Flags::Parse (bool) testing"); | 23 DEFINE_FLAG(bool, parse_flag_bool_test, true, "Flags::Parse (bool) testing"); |
| 24 DEFINE_FLAG(charp, string_opt_test, NULL, "Testing: string option."); | 24 DEFINE_FLAG(charp, string_opt_test, NULL, "Testing: string option."); |
| 25 DEFINE_FLAG(charp, entrypoint_test, "main", "Testing: entrypoint"); | 25 DEFINE_FLAG(charp, entrypoint_test, "main", "Testing: entrypoint"); |
| 26 DEFINE_FLAG(int, counter, 100, "Testing: int flag"); | 26 DEFINE_FLAG(int, counter, 100, "Testing: int flag"); |
| 27 | 27 |
| 28 UNIT_TEST_CASE(ParseFlags) { | 28 VM_UNIT_TEST_CASE(ParseFlags) { |
| 29 EXPECT_EQ(true, FLAG_parse_flag_bool_test); | 29 EXPECT_EQ(true, FLAG_parse_flag_bool_test); |
| 30 Flags::Parse("no_parse_flag_bool_test"); | 30 Flags::Parse("no_parse_flag_bool_test"); |
| 31 EXPECT_EQ(false, FLAG_parse_flag_bool_test); | 31 EXPECT_EQ(false, FLAG_parse_flag_bool_test); |
| 32 Flags::Parse("parse_flag_bool_test"); | 32 Flags::Parse("parse_flag_bool_test"); |
| 33 EXPECT_EQ(true, FLAG_parse_flag_bool_test); | 33 EXPECT_EQ(true, FLAG_parse_flag_bool_test); |
| 34 Flags::Parse("parse_flag_bool_test=false"); | 34 Flags::Parse("parse_flag_bool_test=false"); |
| 35 EXPECT_EQ(false, FLAG_parse_flag_bool_test); | 35 EXPECT_EQ(false, FLAG_parse_flag_bool_test); |
| 36 Flags::Parse("parse_flag_bool_test=true"); | 36 Flags::Parse("parse_flag_bool_test=true"); |
| 37 EXPECT_EQ(true, FLAG_parse_flag_bool_test); | 37 EXPECT_EQ(true, FLAG_parse_flag_bool_test); |
| 38 | 38 |
| 39 EXPECT_EQ(true, FLAG_string_opt_test == NULL); | 39 EXPECT_EQ(true, FLAG_string_opt_test == NULL); |
| 40 Flags::Parse("string_opt_test=doobidoo"); | 40 Flags::Parse("string_opt_test=doobidoo"); |
| 41 EXPECT_EQ(true, FLAG_string_opt_test != NULL); | 41 EXPECT_EQ(true, FLAG_string_opt_test != NULL); |
| 42 EXPECT_EQ(0, strcmp(FLAG_string_opt_test, "doobidoo")); | 42 EXPECT_EQ(0, strcmp(FLAG_string_opt_test, "doobidoo")); |
| 43 | 43 |
| 44 EXPECT_EQ(true, FLAG_entrypoint_test != NULL); | 44 EXPECT_EQ(true, FLAG_entrypoint_test != NULL); |
| 45 EXPECT_EQ(0, strcmp(FLAG_entrypoint_test, "main")); | 45 EXPECT_EQ(0, strcmp(FLAG_entrypoint_test, "main")); |
| 46 | 46 |
| 47 EXPECT_EQ(100, FLAG_counter); | 47 EXPECT_EQ(100, FLAG_counter); |
| 48 Flags::Parse("counter=-300"); | 48 Flags::Parse("counter=-300"); |
| 49 EXPECT_EQ(-300, FLAG_counter); | 49 EXPECT_EQ(-300, FLAG_counter); |
| 50 Flags::Parse("counter=$300"); | 50 Flags::Parse("counter=$300"); |
| 51 EXPECT_EQ(-300, FLAG_counter); | 51 EXPECT_EQ(-300, FLAG_counter); |
| 52 } | 52 } |
| 53 | 53 |
| 54 } // namespace dart | 54 } // namespace dart |
| OLD | NEW |