Home | History | Annotate | Download | only in unittests

Lines Matching refs:CHECK

26 /* Check that removing parameter info out of NAME produces EXPECTED.
29 location information in case the check fails. */
53 /* Helper for CHECK and CHECK_INCOMPL. */
65 /* Check that removing parameter info out of NAME produces EXPECTED.
67 #define CHECK(LANG, NAME, EXPECTED) \
81 CHECK (language_ada, "pck.ada_hello", "pck__ada_hello");
82 CHECK (language_go, "pck.go_hello", "pck.go_hello");
83 CHECK (language_fortran, "mod::func", "mod::func");
88 CHECK (language_d, "pck.d_hello", "pck.d_hello");
94 CHECK (language_cplus, "function()", "function");
95 CHECK (language_cplus, "function() const", "function");
96 CHECK (language_cplus, "A::B::C()", "A::B::C");
97 CHECK (language_cplus, "A::B::C", "A::B::C");
99 #undef CHECK