Lines Matching refs:script
58 CREATE TABLE script(
60 filename TEXT, -- full path to test script
61 slow BOOLEAN, -- true if script is "slow"
63 testfixtureid, -- Id of process that ran script
67 output TEXT, -- full output of test script
119 set R(info_script) [file normalize [info script]]
290 INSERT INTO script(config, filename, slow, state)
312 SELECT config, filename FROM script WHERE state='ready'
325 UPDATE script SET state='running', testfixtureid=$myid
366 UPDATE script
446 proc slave_test_script {script} { argument
477 set rc [catch { interp eval tinterp $script } msg opt]
562 db eval {SELECT output FROM script ORDER BY config!='full',config,filename} {
572 db eval { SELECT sum(nerr) AS nerr, sum(ntest) AS ntest FROM script } { }
575 db eval { SELECT config, filename FROM script WHERE nerr>0 } {
585 db eval { SELECT config, filename FROM script WHERE state!='done' } {