17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# The NEWTARGET causes some tests to fail. Do not use until this is fixed.
NEWTARGET = "-target $(OS)/$(FS)/$(VER)"
TARGET = "-target ubuntu/nfs/none"
all : test1 test2 test3 test4 test5
server :
(cd fullrun;../../bin/megatest -server - -debug 22) &
test0 : cleanprep
cd simplerun ; $(MEGATEST) -server - -debug $(DEBUG)&
test1 : cleanprep
rm -f simplerun/megatest.db
|
>
|
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# The NEWTARGET causes some tests to fail. Do not use until this is fixed.
NEWTARGET = "-target $(OS)/$(FS)/$(VER)"
TARGET = "-target ubuntu/nfs/none"
all : test1 test2 test3 test4 test5
server :
(cd ..;make;make install) && \
(cd fullrun;../../bin/megatest -server - -debug 22) &
test0 : cleanprep
cd simplerun ; $(MEGATEST) -server - -debug $(DEBUG)&
test1 : cleanprep
rm -f simplerun/megatest.db
|
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
cd fullrun;$(MEGATEST) -runtests runfirst -testpatt %/1 -reqtarg ubuntu/nfs/none :runname $(RUNNAME)_itempatt -v
cd fullrun;$(MEGATEST) -runtests runfirst -testpatt %blahha% -reqtarg ubuntu/nfs/none :runname $(RUNNAME)_itempatt -debug 10
cd fullrun;$(MEGATEST) -rollup :runname newrun -target ubuntu/nfs/none -debug 10
cleanprep : ../*.scm Makefile */*.config
mkdir -p /tmp/mt_runs /tmp/mt_links
cd ..;make install
rm -f */logging.db
touch cleanprep
fullprep : cleanprep
cd fullrun;$(MEGATEST) -remove-runs :runname $(RUNNAME)% -target %/%/% -testpatt %/%
cd fullrun;$(BINPATH)/dashboard -rows 15 &
|
|
|
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
cd fullrun;$(MEGATEST) -runtests runfirst -testpatt %/1 -reqtarg ubuntu/nfs/none :runname $(RUNNAME)_itempatt -v
cd fullrun;$(MEGATEST) -runtests runfirst -testpatt %blahha% -reqtarg ubuntu/nfs/none :runname $(RUNNAME)_itempatt -debug 10
cd fullrun;$(MEGATEST) -rollup :runname newrun -target ubuntu/nfs/none -debug 10
cleanprep : ../*.scm Makefile */*.config
mkdir -p /tmp/mt_runs /tmp/mt_links
cd ..;make;make install
rm -f */logging.db
touch cleanprep
fullprep : cleanprep
cd fullrun;$(MEGATEST) -remove-runs :runname $(RUNNAME)% -target %/%/% -testpatt %/%
cd fullrun;$(BINPATH)/dashboard -rows 15 &
|