Megatest

Check-in [874a4143eb]
Login
Overview
Comment:Typo in dashboard
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 874a4143eba607f24315857f9a0f6167b2c8f804
User & Date: matt on 2011-05-05 22:50:57
Other Links: manifest | tags
Context
2011-05-05
23:24
Partial fix to bug in launching and running updates check-in: 8f7db81841 user: matt tags: trunk
22:50
Typo in dashboard check-in: 874a4143eb user: matt tags: trunk
18:35
Added stuck test handling check-in: 7f668b637d user: mrwellan tags: trunk
Changes

Modified dashboard.scm from [d12532b941] to [8443e49efc].

95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
	       (itempath     (db:test-get-item-path test))
	       (testfullname (runs:test-get-full-path test))
	       (currstatus   (db:test-get-status test))
	       (currstate    (db:test-get-state  test))
	       (currcomment  (db:test-get-comment test))
	       (host         (db:test-get-host test))
	       (cpuload      (db:test-get-cpuload test))
	       (runtime      (db:test-get-run)duration test)
	       (logfile      (conc (db:test-get-rundir test) "/" (db:test-get-final_logf test)))
	       (viewlog      (lambda (x)
			       (if (file-exists? logfile)
				   (system (conc "firefox " logfile "&"))
				   (message-window (conc "File " logfile " not found")))))
	       (xterm        (lambda (x)
			       (if (directory-exists? rundir)







|







95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
	       (itempath     (db:test-get-item-path test))
	       (testfullname (runs:test-get-full-path test))
	       (currstatus   (db:test-get-status test))
	       (currstate    (db:test-get-state  test))
	       (currcomment  (db:test-get-comment test))
	       (host         (db:test-get-host test))
	       (cpuload      (db:test-get-cpuload test))
	       (runtime      (db:test-get-run_duration test))
	       (logfile      (conc (db:test-get-rundir test) "/" (db:test-get-final_logf test)))
	       (viewlog      (lambda (x)
			       (if (file-exists? logfile)
				   (system (conc "firefox " logfile "&"))
				   (message-window (conc "File " logfile " not found")))))
	       (xterm        (lambda (x)
			       (if (directory-exists? rundir)

Modified tests/Makefile from [89065be368] to [192cc0f807].

1
2
3
4
5
6







# run some tests

runall :
	cd ../;make 
	../megatest -runall :sysname ubuntu :fsname nfs :datapath none :runname `date +%GWW%V.%u` -m "This is a comment specific to a run"














>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
# run some tests

runall :
	cd ../;make 
	../megatest -runall :sysname ubuntu :fsname nfs :datapath none :runname `date +%GWW%V.%u` -m "This is a comment specific to a run"

test :
	cd ../;make test
	make runall

dashboard :
	cd ../;make dashboard
	../dashboard &