Home
last modified time | relevance | path

Searched refs:match_test_program (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/kyua/engine/
H A Dfilters_test.cpp391 ATF_REQUIRE(filters.match_test_program(fs::path("foo"))); in ATF_TEST_CASE_BODY()
392 ATF_REQUIRE(filters.match_test_program(fs::path("foo/bar"))); in ATF_TEST_CASE_BODY()
406 ATF_REQUIRE( filters.match_test_program(fs::path("top_test"))); in ATF_TEST_CASE_BODY()
407 ATF_REQUIRE( filters.match_test_program(fs::path("subdir_1/foo"))); in ATF_TEST_CASE_BODY()
408 ATF_REQUIRE( filters.match_test_program(fs::path("subdir_1/bar"))); in ATF_TEST_CASE_BODY()
409 ATF_REQUIRE( filters.match_test_program(fs::path("subdir_2/a_test"))); in ATF_TEST_CASE_BODY()
410 ATF_REQUIRE( filters.match_test_program(fs::path("subdir_2/b_test"))); in ATF_TEST_CASE_BODY()
411 ATF_REQUIRE(!filters.match_test_program(fs::path("subdir_2/c_test"))); in ATF_TEST_CASE_BODY()
412 ATF_REQUIRE(!filters.match_test_program(fs::path("subdir_3"))); in ATF_TEST_CASE_BODY()
499 ATF_REQUIRE(state.match_test_program(fs::path("foo/bar/something"))); in ATF_TEST_CASE_BODY()
[all …]
H A Dfilters.cpp250 engine::test_filters::match_test_program(const fs::path& name) const in match_test_program() function in engine::test_filters
277 INV(match_test_program(test_program)); in match_test_case()
287 INV(!found || match_test_program(test_program)); in match_test_case()
357 engine::filters_state::match_test_program(const fs::path& test_program) const in match_test_program() function in engine::filters_state
359 return _filters.match_test_program(test_program); in match_test_program()
H A Dfilters.hpp104 bool match_test_program(const utils::fs::path&) const;
125 bool match_test_program(const utils::fs::path&) const;
H A Dscanner.cpp122 if (!filters.match_test_program( in advance()
/freebsd/contrib/kyua/drivers/
H A Dscan_results.cpp93 if (filters.match_test_program(test_program->relative_path())) { in drive()