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;
46 test_suppressions_are_consistent(const suppressions_type& suppr, in test_suppressions_are_consistent() argument
49 REQUIRE(suppr.size() == 2); in test_suppressions_are_consistent()
51 function_suppression_sptr left = is_function_suppression(suppr[0]); in test_suppressions_are_consistent()
52 variable_suppression_sptr right = is_variable_suppression(suppr[1]); in test_suppressions_are_consistent()
72 suppressions_type suppr = variable
74 REQUIRE(suppr.empty());
81 suppressions_type suppr variable
83 REQUIRE(!suppr.empty());
84 test_suppressions_are_consistent(suppr, "^(test_symbol)$");
91 suppressions_type suppr variable
93 REQUIRE(!suppr.empty());
94 test_suppressions_are_consistent(suppr, "^(test_symbol)$");
102 suppressions_type suppr = variable
104 REQUIRE(!suppr.empty());
105 test_suppressions_are_consistent(suppr,
114 suppressions_type suppr variable
116 REQUIRE(!suppr.empty());
117 test_suppressions_are_consistent(suppr,
125 suppressions_type suppr variable
127 REQUIRE(!suppr.empty());
128 test_suppressions_are_consistent(suppr, "^(test_symbol1|test_symbol2)$");