HomeSort by relevance Sort by last modified time
    Searched refs:tko_tests (Results 1 - 2 of 2) sorted by null

  /external/autotest/contrib/
remove_old_tests_in_tko.sql 7 -- Delete tko_tests older than 180 days in batches of 5k. Wait for 5 seconds to
11 WHILE EXISTS (SELECT test_idx FROM tko_tests WHERE started_time < @cutoff_date LIMIT 1) DO
13 SELECT concat("Deleting 5k records in tko_tests older than ", @cutoff_date);
14 DELETE FROM tko_tests WHERE started_time < @cutoff_date LIMIT 5000;
22 WHILE EXISTS (SELECT test_idx FROM tko_tests where started_time IS NULL and finished_time < @cutoff_date LIMIT 1) DO
24 SELECT concat("Deleting 5k records in tko_tests with finished time older than ", @cutoff_date);
25 DELETE FROM tko_tests WHERE started_time IS NULL AND finished_time < @cutoff_date LIMIT 5000;
30 -- After tko_tests is cleaned up, we can start cleaning up tko_jobs, due to FK
32 -- may have later started_time comparing to tko_tests. Deleting these records
  /external/autotest/frontend/tko/
rpc_interface_unittest_fixme.py 15 SELECT tko_tests.test_idx AS test_idx,
16 tko_tests.job_idx AS job_idx,
17 tko_tests.test AS test_name,
18 tko_tests.subdir AS subdir,
19 tko_tests.kernel_idx AS kernel_idx,
20 tko_tests.status AS status_idx,
21 tko_tests.reason AS reason,
22 tko_tests.machine_idx AS machine_idx,
23 tko_tests.invalid AS invalid,
24 tko_tests.invalidates_test_idx AS invalidates_test_idx
    [all...]

Completed in 75 milliseconds