Megatest

Check-in [607707937f]
Login
Overview
Comment:Expanded Makefile to include two pass test, with and with out server
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | servermode
Files: files | file ages | folders
SHA1: 607707937f06f0250b2f4866463e8bd6cb53f3bc
User & Date: matt on 2012-03-09 19:50:11
Other Links: branch diff | manifest | tags
Context
2012-03-11
13:31
Couple tweaks to improve server mode check-in: 7f3c39ccb6 user: matt tags: servermode
2012-03-09
19:50
Expanded Makefile to include two pass test, with and with out server check-in: 607707937f user: matt tags: servermode
00:00
Partial migration away from gratuitious use of get-test-info check-in: 46e6279f80 user: matt tags: servermode
Changes

Modified tests/Makefile from [b314894f18] to [2552822744].

1
2
3
4
5

6
7




8
9

10
11

12
13
14
15
16
17
18
# run some tests

BINPATH=$(shell realpath ../bin)
MEGATEST=$(BINPATH)/megatest
PATH := $(BINPATH):$(PATH)


runall :




	cd ../;make install
	mkdir -p /tmp/mt_runs /tmp/mt_links

	$(BINPATH)/dboard -rows 15 &
	$(MEGATEST) -runall -target ubuntu/nfs/none :runname `date +w%V.%u.%H` -m "This is a comment specific to a run" -v -server -


test :
	csi -b -I .. ../megatest.scm -- -runall -target ubuntu/afs/tmp :runname blah
	cd ../;make test
	make runall

dashboard :





>


>
>
>
>


>

|
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# run some tests

BINPATH=$(shell realpath ../bin)
MEGATEST=$(BINPATH)/megatest
PATH := $(BINPATH):$(PATH)
RUNNAME := $(shell date +w%V.%u.%H)

runall :
	@echo WARNING: These tests will kill megatest and dashboard!
	@sleep 3
	killall -9 dboard || true
	killall -9 megatest || true
	cd ../;make install
	mkdir -p /tmp/mt_runs /tmp/mt_links
	$(MEGATEST) -remove-runs :runname $(RUNNAME)% -target %/%/% -testpatt % -itempatt %
	$(BINPATH)/dboard -rows 15 &
	$(MEGATEST) -runall -target ubuntu/nfs/none :runname $(RUNNAME)_a
	$(MEGATEST) -runall -target ubuntu/nfs/none :runname $(RUNNAME)_b -m "This is a comment specific to a run" -v -server -

test :
	csi -b -I .. ../megatest.scm -- -runall -target ubuntu/afs/tmp :runname blah
	cd ../;make test
	make runall

dashboard :