aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libaio/harness/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/libaio/harness/Makefile')
-rw-r--r--tools/libaio/harness/Makefile37
1 files changed, 0 insertions, 37 deletions
diff --git a/tools/libaio/harness/Makefile b/tools/libaio/harness/Makefile
deleted file mode 100644
index d2483fdda2..0000000000
--- a/tools/libaio/harness/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-# foo.
-TEST_SRCS:=$(shell find cases/ -name \*.t | sort -n -t/ -k2)
-PROGS:=$(patsubst %.t,%.p,$(TEST_SRCS))
-HARNESS_SRCS:=main.c
-# io_queue.c
-
-CFLAGS=-Wall -Werror -g -O -laio
-#-lpthread -lrt
-
-all: $(PROGS)
-
-$(PROGS): %.p: %.t $(HARNESS_SRCS)
- $(CC) $(CFLAGS) -DTEST_NAME=\"$<\" -o $@ main.c
-
-clean:
- rm -f $(PROGS) *.o runtests.out rofile wofile rwfile
-
-.PHONY:
-
-testdir/rofile: .PHONY
- rm -f $@
- echo "test" >$@
- chmod 400 $@
-
-testdir/wofile: .PHONY
- rm -f $@
- echo "test" >$@
- chmod 200 $@
-
-testdir/rwfile: .PHONY
- rm -f $@
- echo "test" >$@
- chmod 600 $@
-
-check: $(PROGS) testdir/rofile testdir/rwfile testdir/wofile
- ./runtests.sh $(PROGS)
-