Megatest

Check-in [dbdd37c3c4]
Login
Overview
Comment:Added install (to local bin) and adding to PATH to enable using mt_* scripts without additional setup
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: dbdd37c3c43e69f6d52b29336ba88aee256884ed
User & Date: matt on 2011-10-15 16:18:00
Other Links: manifest | tags
Context
2011-10-19
21:16
Merged in changes from private branch check-in: 52120b2140 user: mrwellan tags: trunk
2011-10-15
16:18
Added install (to local bin) and adding to PATH to enable using mt_* scripts without additional setup check-in: dbdd37c3c4 user: matt tags: trunk
15:57
Added missing scripts from priority tests check-in: bb52120a09 user: matt tags: trunk
Changes

Modified tests/Makefile from [93af9d3b9b] to [65f4045670].

1
2
3


4
5
6
7
8
9
10
11
12
13
# run some tests

MEGATEST=$(shell realpath ../megatest)



runall :
	cd ../;make 
	$(MEGATEST) -keepgoing -runall :sysname ubuntu :fsname nfs :datapath none :runname `date +w%V.%u.%H` -m "This is a comment specific to a run" -v

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



|
>
>


|







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

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

runall :
	cd ../;make install 
	$(MEGATEST) -keepgoing -runall :sysname ubuntu :fsname nfs :datapath none :runname `date +w%V.%u.%H` -m "This is a comment specific to a run" -v

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