Megatest

Check-in [cd3d02e58e]
Login
Overview
Comment:Added install of mt_* scripts
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: cd3d02e58e5e00c1d22857b9b7075a175fdc765d
User & Date: matt on 2011-09-26 00:11:42
Other Links: manifest | tags
Context
2011-09-26
00:56
Added -keepgoing to default run command in dashboard-test.scm check-in: 7a84f9fe01 user: matt tags: trunk
00:11
Added install of mt_* scripts check-in: cd3d02e58e user: matt tags: trunk
2011-09-25
23:46
Added ability to clean tests and launch from the gui. Also added filter for running from command line -itempatt is now respected by -runtests with % as wildcard check-in: 99f24d81d1 user: matt tags: trunk
Changes

Modified Makefile from [9d2940285c] to [9de48ecb2b].

8
9
10
11
12
13
14


15

16
17
18
19
20
21
22
23
dashboard: $(FILES)
	csc dashboard.scm

$(PREFIX)/bin/megatest : megatest
	@echo Installing to PREFIX=$(PREFIX), use ^C to cancel and change
	sleep 5
	cp megatest $(PREFIX)/bin/megatest




$(PREFIX)/bin/dashboard : dashboard $(FILES)
	cp dashboard $(PREFIX)/bin/dashboard

install : $(PREFIX)/bin/megatest $(PREFIX)/bin/dashboard

test: tests/tests.scm
	cd tests;csi -I .. -b -n tests.scm








>
>

>
|
|

|




8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
dashboard: $(FILES)
	csc dashboard.scm

$(PREFIX)/bin/megatest : megatest
	@echo Installing to PREFIX=$(PREFIX), use ^C to cancel and change
	sleep 5
	cp megatest $(PREFIX)/bin/megatest
	cp utils/mt_* $(PREFIX)/bin
	chmod a+x $(PREFIX)/bin/mt_*

# install dashboard as dboard so wrapper script can be called dashboard
$(PREFIX)/bin/dboard : dashboard $(FILES)
	cp dashboard $(PREFIX)/bin/dboard

install : $(PREFIX)/bin/megatest $(PREFIX)/bin/dboard

test: tests/tests.scm
	cd tests;csi -I .. -b -n tests.scm