29 lines
830 B
Diff
29 lines
830 B
Diff
From 8482be832cc24bf2676dca3dcebd2ee82396ab37 Mon Sep 17 00:00:00 2001
|
|
From: Harald Hoyer <harald@redhat.com>
|
|
Date: Fri, 28 Feb 2014 12:57:57 +0100
|
|
Subject: [PATCH] test: add missing Makefile.testdir
|
|
|
|
---
|
|
test/Makefile.testdir | 12 ++++++++++++
|
|
1 file changed, 12 insertions(+)
|
|
create mode 100644 test/Makefile.testdir
|
|
|
|
diff --git a/test/Makefile.testdir b/test/Makefile.testdir
|
|
new file mode 100644
|
|
index 00000000..33c2a9a4
|
|
--- /dev/null
|
|
+++ b/test/Makefile.testdir
|
|
@@ -0,0 +1,12 @@
|
|
+.PHONY: all setup clean run
|
|
+
|
|
+all:
|
|
+ @$(MAKE) -s --no-print-directory -C ../.. all
|
|
+ @V=$(V) basedir=../.. testdir=../ ./test.sh --all
|
|
+setup:
|
|
+ @$(MAKE) --no-print-directory -C ../.. all
|
|
+ @basedir=../.. testdir=../ ./test.sh --setup
|
|
+clean:
|
|
+ @basedir=../.. testdir=../ ./test.sh --clean
|
|
+run:
|
|
+ @basedir=../.. testdir=../ ./test.sh --run
|