Overview
Comment: | Added example of query for finding run effiency |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.61 |
Files: | files | file ages | folders |
SHA1: |
3ceaf158029e57370b12e1f8f6aa3747 |
User & Date: | matt on 2016-06-28 01:06:37 |
Other Links: | branch diff | manifest | tags |
Context
2016-06-28
| ||
16:46 | Merged in changes made by Ritika for a right mouse menu for buttons. Not complete but xterm launching works check-in: ce0b996d14 user: mrwellan tags: v1.61 | |
01:06 | Added example of query for finding run effiency check-in: 3ceaf15802 user: matt tags: v1.61 | |
00:31 | Added beginnings of a simple vector graphics library check-in: 8b62c0b321 user: matt tags: v1.61 | |
Changes
Added run-eff.sql version [61ec46f56a].
> | 1 | select run_id,time(max(event_time+run_duration)-min(event_time),'unixepoch') AS wall_runtime,time(max(run_duration),'unixepoch') AS max_duration,testname from tests where item_path != '' group by run_id; |