Lines Matching refs:suppr
22 using abigail::suppr::suppression_sptr;
23 using abigail::suppr::suppressions_type;
24 using abigail::suppr::function_suppression_sptr;
25 using abigail::suppr::variable_suppression_sptr;
26 using abigail::suppr::is_function_suppression;
27 using abigail::suppr::is_variable_suppression;
62 test_suppressions_are_consistent(const suppressions_type& suppr, in test_suppressions_are_consistent() argument
65 REQUIRE(suppr.size() == 2); in test_suppressions_are_consistent()
67 function_suppression_sptr left = is_function_suppression(suppr[0]); in test_suppressions_are_consistent()
68 variable_suppression_sptr right = is_variable_suppression(suppr[1]); in test_suppressions_are_consistent()
88 suppressions_type suppr = variable
90 REQUIRE(suppr.empty());
97 suppressions_type suppr variable
99 REQUIRE(!suppr.empty());
100 test_suppressions_are_consistent(suppr, "^(test_symbol)$");
107 suppressions_type suppr variable
109 REQUIRE(!suppr.empty());
110 test_suppressions_are_consistent(suppr, "^(test_symbol)$");
118 suppressions_type suppr = variable
120 REQUIRE(!suppr.empty());
121 test_suppressions_are_consistent(suppr,
130 suppressions_type suppr variable
132 REQUIRE(!suppr.empty());
133 test_suppressions_are_consistent(suppr,
141 suppressions_type suppr variable
143 REQUIRE(!suppr.empty());
144 test_suppressions_are_consistent(suppr, "^(test_symbol1|test_symbol2)$");
150 suppressions_type suppr = variable
152 REQUIRE(suppr.empty());
159 suppressions_type suppr variable
161 REQUIRE(!suppr.empty());
162 test_suppressions_are_consistent(suppr, "^(test_symbol)$");
169 suppressions_type suppr variable
171 REQUIRE(!suppr.empty());
172 test_suppressions_are_consistent(suppr, "^(test_symbol)$");
180 suppressions_type suppr = variable
182 REQUIRE(!suppr.empty());
183 test_suppressions_are_consistent(suppr,
192 suppressions_type suppr variable
194 REQUIRE(!suppr.empty());
195 test_suppressions_are_consistent(suppr,
203 suppressions_type suppr variable
205 REQUIRE(!suppr.empty());
206 test_suppressions_are_consistent(suppr, "^(test_symbol1|test_symbol2)$");