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 26 27
|
Description: Makefile: Disable test in order to ease workload on build servers.
Author: Martin Steigerwald <martin.steigerwald@proact.de
--- a/Makefile
+++ b/Makefile
@@ -6,8 +6,6 @@
# Modifications include using fsync after wrting to flush to disk and changes to check return
# values from syscalls.
#
-DIR1= /test/dir1
-DIR2= /test/dir2
COBJS= fs_mark.o lib_timing.o
CFLAGS+= -O2 -Wall -D_FILE_OFFSET_BITS=64
@@ -25,12 +23,6 @@
install -d $(BIN)
install ./fs_mark $(BIN)
-test: fs_mark
- ./fs_mark -d ${DIR1} -d ${DIR2} -s 51200 -n 4096
- ./fs_mark -d ${DIR1} -d ${DIR2} -s 51200 -n 4096 -r
- ./fs_mark -d ${DIR1} -d ${DIR2} -s 51200 -n 4096 -D 128
- ./fs_mark -d ${DIR1} -d ${DIR2} -s 51200 -n 4096 -r -D 128
-
clean:
rm -f ${COBJS} fs_mark fs_log.txt
|