Overview
| SHA1 Hash: | 874a4143eba607f24315857f9a0f6167b2c8f804 |
|---|---|
| Date: | 2011-05-05 22:50:57 |
| User: | matt |
| Comment: | Typo in dashboard |
| Timelines: | family | ancestors | descendants | both | trunk |
| Downloads: | Tarball | ZIP archive |
| Other Links: | files | file ages | manifest |
Tags And Properties
- branch=trunk inherited from [d673a9367e]
- sym-trunk inherited from [d673a9367e]
Changes
Modified dashboard.scm from [d12532b9413f4c77] to [8443e49efc55455b].
95 (itempath (db:test-get-item-path test)) 95 (itempath (db:test-get-item-path test)) 96 (testfullname (runs:test-get-full-path test)) 96 (testfullname (runs:test-get-full-path test)) 97 (currstatus (db:test-get-status test)) 97 (currstatus (db:test-get-status test)) 98 (currstate (db:test-get-state test)) 98 (currstate (db:test-get-state test)) 99 (currcomment (db:test-get-comment test)) 99 (currcomment (db:test-get-comment test)) 100 (host (db:test-get-host test)) 100 (host (db:test-get-host test)) 101 (cpuload (db:test-get-cpuload test)) 101 (cpuload (db:test-get-cpuload test)) 102 (runtime (db:test-get-run)duration test) | 102 (runtime (db:test-get-run_duration test)) 103 (logfile (conc (db:test-get-rundir test) "/" (db:test-get-fi 103 (logfile (conc (db:test-get-rundir test) "/" (db:test-get-fi 104 (viewlog (lambda (x) 104 (viewlog (lambda (x) 105 (if (file-exists? logfile) 105 (if (file-exists? logfile) 106 (system (conc "firefox " logfile "&")) 106 (system (conc "firefox " logfile "&")) 107 (message-window (conc "File " logfile " not f 107 (message-window (conc "File " logfile " not f 108 (xterm (lambda (x) 108 (xterm (lambda (x) 109 (if (directory-exists? rundir) 109 (if (directory-exists? rundir)
Modified tests/Makefile from [89065be368ecbefa] to [192cc0f807202b33].
1 # run some tests 1 # run some tests 2 2 3 runall : 3 runall : 4 cd ../;make 4 cd ../;make 5 ../megatest -runall :sysname ubuntu :fsname nfs :datapath none :runname 5 ../megatest -runall :sysname ubuntu :fsname nfs :datapath none :runname 6 6 > 7 test : > 8 cd ../;make test > 9 make runall > 10 > 11 dashboard : > 12 cd ../;make dashboard > 13 ../dashboard &