1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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
cd ../;make install
mkdir -p /tmp/mt_runs /tmp/mt_links
$(BINPATH)/dboard -rows 15 &
$(MEGATEST) -keepgoing -runall -target ubuntu/nfs/none :runname `date +w%V.%u.%H` -m "This is a comment specific to a run" -v
$(MEGATEST) -runall -target ubuntu/nfs/none :runname `date +w%V.%u.%H` -m "This is a comment specific to a run" -v
test :
csi -b -I .. ../megatest.scm -- -runall -target ubuntu/afs/tmp :runname blah
cd ../;make test
make runall
dashboard :
|