Searched refs:test_case_id (Results 1 - 5 of 5) sorted by relevance

/netbsd-current/external/bsd/kyua-cli/dist/store/
H A Dmigrate_v1_v2.sql141 -- to test cases will have the test_case_id set to not NULL.
145 -- of properties that map to a single test_program_id or test_case_id.
148 test_case_id INTEGER DEFAULT NULL,
153 UNIQUE (test_program_id, test_case_id, property_name)
156 ON tmp_metadatas (test_case_id);
187 SELECT NULL, test_case_id, interface, default_name, default_value
206 WHERE aux.test_case_id = tmp_metadatas.test_case_id)
207 WHERE test_case_id IS NOT NULL AND property_name = 'timeout'
218 WHERE aux.test_case_id
[all...]
H A Dtransaction.cpp419 " test_cases.test_case_id, test_cases.name, "
426 " ON test_cases.test_case_id = test_results.test_case_id "
530 /// \param test_case_id The identifier of the test case.
538 get_test_case_file(sqlite::database& db, const int64_t test_case_id, argument
543 "WHERE test_case_id == :test_case_id AND file_name == :file_name");
544 stmt.bind(":test_case_id", test_case_id);
561 _pimpl->_stmt.safe_column_int64("test_case_id"),
892 put_test_case_file(const std::string& name, const fs::path& path, const int64_t test_case_id) argument
896 LD(F("Storing %s (%s) of test case %s") % name % path % test_case_id); local
933 put_result(const engine::test_result& result, const int64_t test_case_id, const datetime::timestamp& start_time, const datetime::timestamp& end_time) argument
[all...]
H A Dschema_v1.sql171 test_case_id INTEGER PRIMARY KEY AUTOINCREMENT,
183 test_case_id INTEGER PRIMARY KEY REFERENCES test_cases,
194 test_case_id INTEGER NOT NULL REFERENCES test_cases,
207 PRIMARY KEY (test_case_id, file_name)
225 test_case_id INTEGER PRIMARY KEY REFERENCES test_cases,
254 test_case_id INTEGER REFERENCES test_cases,
H A Dschema_v2.sql213 test_case_id INTEGER PRIMARY KEY AUTOINCREMENT,
233 test_case_id INTEGER PRIMARY KEY REFERENCES test_cases,
244 test_case_id INTEGER NOT NULL REFERENCES test_cases,
257 PRIMARY KEY (test_case_id, file_name)
/netbsd-current/external/bsd/kyua-cli/dist/engine/drivers/
H A Drun_tests.cpp131 const int64_t test_case_id = tx.put_test_case(*test_case, local
133 file_saver_hooks test_hooks(tx, test_case_id);
139 tx.put_result(result, test_case_id, start_time, end_time);

Completed in 194 milliseconds