Megatest

Check-in [d14b97e156]
Login
Overview
Comment:Removing junk file
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | rollup-runs
Files: files | file ages | folders
SHA1: d14b97e1564e1ef9be1463e2501c15ca30b2e683
User & Date: mrwellan on 2011-08-24 07:27:02
Other Links: branch diff | manifest | tags
Context
2011-08-24
12:50
Merged rollup-runs branch into trunk check-in: ebea00e4bb user: mrwellan tags: trunk
07:27
Removing junk file Closed-Leaf check-in: d14b97e156 user: mrwellan tags: rollup-runs
2011-08-23
12:53
Fixes to support full rollup of values check-in: d940f56993 user: mrwellan tags: rollup-runs
Changes

Deleted mkcsv.sh version [6c39fb52a9].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

sqlite3 megatest.db <<EOF
create view all_tests as select 
    runname,RELEASE,DOTPROC,TECH,t.testname,description,
    item_path,t.state,t.status,
    attemptnum,final_logf,logdat,run_duration,r.comment,
    t.event_time,expected_value,value,tol,tol_perc,
    first_err,first_warn,tm.tags,
    r.owner,t.comment,
    author,tm.owner,reviewed,iterated,avg_runtime,
    diskfree,uname,rundir,avg_disk,t.tags,run_id,
    host,cpuload
 from tests as t inner join runs as r on t.run_id=r.id inner join test_meta as tm on tm.testname=t.testname;
.head on
.mode csv
.output "all-data.csv"
select * from all_tests;
drop view all_tests;
.q
EOF
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<