Searched refs:test_action (Results 1 - 1 of 1) sorted by relevance

/external/clang/unittests/Frontend/
H A DFrontendActionTest.cpp77 TestASTFrontendAction test_action; local
78 ASSERT_TRUE(compiler.ExecuteAction(test_action));
79 ASSERT_EQ(2U, test_action.decl_names.size());
80 EXPECT_EQ("main", test_action.decl_names[0]);
81 EXPECT_EQ("x", test_action.decl_names[1]);
96 TestASTFrontendAction test_action(/*enableIncrementalProcessing=*/true);
97 ASSERT_TRUE(compiler.ExecuteAction(test_action));
98 ASSERT_EQ(2U, test_action.decl_names.size());
99 EXPECT_EQ("main", test_action.decl_names[0]);
100 EXPECT_EQ("x", test_action
[all...]

Completed in 1288 milliseconds