OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:test_case_id
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/bsd/kyua-cli/dist/store/
schema_v1.sql
171
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,
schema_v2.sql
213
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)
migrate_v1_v2.sql
141
-- 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
= tmp_metadatas.test_case_id
[
all
...]
transaction.cpp
419
" 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
,
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
"),
896
LD(F("Storing %s (%s) of test case %s") % name % path %
test_case_id
);
local
[
all
...]
/src/external/bsd/kyua-cli/dist/engine/drivers/
run_tests.cpp
131
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 64 milliseconds
Indexes created Mon Mar 16 00:23:04 UTC 2026