Lines Matching refs:err

26   Err err;
27 good_input.parsed()->Execute(setup.scope(), &err);
28 ASSERT_FALSE(err.has_error()) << err.message();
36 err = Err();
37 source_set_input.parsed()->Execute(setup.scope(), &err);
38 ASSERT_TRUE(err.has_error());
55 Err err;
56 nonscoped_input.parsed()->Execute(setup.scope(), &err);
57 ASSERT_FALSE(err.has_error()) << err.message();
65 err = Err();
66 scoped_input.parsed()->Execute(setup.scope(), &err);
67 ASSERT_FALSE(err.has_error()) << err.message();
75 err = Err();
76 nonexistent_arg_input.parsed()->Execute(setup.scope(), &err);
77 ASSERT_FALSE(err.has_error()) << err.message();
86 err = Err();
87 exclusion_input.parsed()->Execute(setup.scope(), &err);
88 ASSERT_TRUE(err.has_error()) << err.message();
89 EXPECT_EQ("Assignment had no effect.", err.message());
97 err = Err();
98 error_input.parsed()->Execute(setup.scope(), &err);
99 ASSERT_TRUE(err.has_error());
100 EXPECT_EQ("Not supported with a variable list.", err.message());
107 err = Err();
108 argcount_error_input.parsed()->Execute(setup.scope(), &err);
109 ASSERT_TRUE(err.has_error());
110 EXPECT_EQ("Wrong number of arguments.", err.message());
118 err = Err();
119 scope_error_input.parsed()->Execute(setup.scope(), &err);
120 ASSERT_TRUE(err.has_error());
121 EXPECT_EQ("Wrong number of arguments.", err.message());
128 err = Err();
129 string_error_input.parsed()->Execute(setup.scope(), &err);
130 ASSERT_TRUE(err.has_error());
131 EXPECT_EQ("Wrong number of arguments.", err.message());
150 err = Err();
151 template_input.parsed()->Execute(setup.scope(), &err);
152 ASSERT_FALSE(err.has_error()) << err.message();
183 Err err;
184 good_input.parsed()->Execute(setup.scope(), &err);
185 ASSERT_FALSE(err.has_error()) << err.message();
202 Err err;
203 good_input.parsed()->Execute(setup.scope(), &err);
204 ASSERT_TRUE(err.has_error());
205 ASSERT_EQ(err.message(), "More than one language used in target sources.");