16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# 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
test0 : cleanprep
cd simplerun ; $(MEGATEST) -server - -debug $(DEBUG)&
test1 : cleanprep
rm -f simplerun/megatest.db
rm -rf simplelinks/ simpleruns/
mkdir -p simplelinks simpleruns
|
>
>
>
|
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# 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
rm -rf simplelinks/ simpleruns/
mkdir -p simplelinks simpleruns
|