/netbsd-src/external/bsd/kyua-cli/dist/engine/ |
H A D | kyuafile_test.cpp | 61 ATF_REQUIRE_EQ(0, suite.test_programs().size()); in ATF_TEST_CASE_BODY() 102 ATF_REQUIRE_EQ(6, suite.test_programs().size()); in ATF_TEST_CASE_BODY() 104 ATF_REQUIRE_EQ("atf", suite.test_programs()[0]->interface_name()); in ATF_TEST_CASE_BODY() 105 ATF_REQUIRE_EQ(fs::path("1st"), suite.test_programs()[0]->relative_path()); in ATF_TEST_CASE_BODY() 106 ATF_REQUIRE_EQ("one-suite", suite.test_programs()[0]->test_suite_name()); in ATF_TEST_CASE_BODY() 108 ATF_REQUIRE_EQ("atf", suite.test_programs()[1]->interface_name()); in ATF_TEST_CASE_BODY() 109 ATF_REQUIRE_EQ(fs::path("2nd"), suite.test_programs()[1]->relative_path()); in ATF_TEST_CASE_BODY() 110 ATF_REQUIRE_EQ("first", suite.test_programs()[1]->test_suite_name()); in ATF_TEST_CASE_BODY() 112 ATF_REQUIRE_EQ("plain", suite.test_programs()[2]->interface_name()); in ATF_TEST_CASE_BODY() 113 ATF_REQUIRE_EQ(fs::path("3rd"), suite.test_programs()[2]->relative_path()); in ATF_TEST_CASE_BODY() [all …]
|
H A D | kyuafile.hpp | 84 const test_programs_vector& test_programs(void) const;
|
H A D | kyuafile.cpp | 627 engine::kyuafile::test_programs(void) const in test_programs() function in engine::kyuafile
|
/netbsd-src/external/bsd/kyua-cli/dist/store/ |
H A D | migrate_v1_v2.sql | 111 test_suite_name, interface FROM test_programs; 112 DROP TABLE test_programs; 113 ALTER TABLE new_test_programs RENAME TO test_programs; 123 ON test_programs (action_id); 185 FROM test_programs JOIN tmp_default_metadata; 188 FROM test_programs JOIN test_cases 189 ON test_cases.test_program_id = test_programs.test_program_id 303 UPDATE test_programs 306 WHERE tmp_metadatas.test_program_id = test_programs.test_program_id
|
H A D | testdata_v1.sql | 67 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 82 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 108 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 124 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 140 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 169 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 238 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 279 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 304 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
|
H A D | testdata_v2.sql | 79 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 105 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 142 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 169 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 196 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 236 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 318 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 381 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 417 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
|
H A D | schema_v1.sql | 136 CREATE TABLE test_programs ( table 172 test_program_id INTEGER REFERENCES test_programs, 271 test_program_id INTEGER PRIMARY KEY REFERENCES test_programs,
|
H A D | schema_v2.sql | 170 CREATE TABLE test_programs ( table 203 ON test_programs (action_id); 214 test_program_id INTEGER REFERENCES test_programs,
|
/netbsd-src/external/bsd/kyua-atf-compat/dist/ |
H A D | atf2kyua.sh | 90 local test_programs= 95 test_programs="${test_programs} ${file}" 110 if [ -n "${test_programs}" ]; then 112 for tp in ${test_programs}; do
|
/netbsd-src/external/bsd/kyua-cli/dist/examples/ |
H A D | syntax_test.cpp | 129 ATF_REQUIRE(kyuafile.test_programs().empty()); in ATF_TEST_CASE_BODY() 171 ATF_REQUIRE_EQ(2, kyuafile.test_programs().size()); in ATF_TEST_CASE_BODY() 172 ATF_REQUIRE((exp_test_program_a == *kyuafile.test_programs()[0] && in ATF_TEST_CASE_BODY() 173 exp_test_program_c == *kyuafile.test_programs()[1]) in ATF_TEST_CASE_BODY() 175 (exp_test_program_a == *kyuafile.test_programs()[1] && in ATF_TEST_CASE_BODY() 176 exp_test_program_c == *kyuafile.test_programs()[0])); in ATF_TEST_CASE_BODY()
|
/netbsd-src/external/bsd/kyua-cli/dist/engine/drivers/ |
H A D | list_tests.cpp | 99 kyuafile.test_programs().begin(); in drive() 100 iter != kyuafile.test_programs().end(); iter++) { in drive()
|
H A D | debug_test.cpp | 72 kyuafile.test_programs().begin(); p != kyuafile.test_programs().end(); in find_test_case()
|
H A D | run_tests.cpp | 192 kyuafile.test_programs().begin(); in drive() 193 iter != kyuafile.test_programs().end(); iter++) { in drive()
|