chiark / gitweb /
tests/intree: Make copy and break out from tests/example
[subdirmk.git] / tests / example / check
index b7cf6dfd3a82d435a0fffc5fe761383af4d98e4f..003bf81495896c2d91df9ee6367148917120a092 100755 (executable)
@@ -1,18 +1,9 @@
 #!/bin/sh
 set -ex
 
-cd example
-
-SUBDIRMK_REGEN_NDEBUG=''
-export SUBDIRMK_REGEN_NDEBUG
+. tests/build-common
 
-: ----- in-tree build -----
-
-git clean -xdff
-./autogen.sh && ./configure
-make -j4 all check
-make -j4 clean
-make -j4 all check
+cd example
 
 : ----- out of tree build -----
 
@@ -26,12 +17,20 @@ make -j4 all check
 
 : ----- testing rebuild on input change -----
 
+reset_times () {
+       find -type f -print0 \
+       | xargs -0 \
+       touch -hmd 'now -1 seconds' --
+}
+
 : ----- for-check-1 -----
+reset_times
 echo 'for-check-1:' >>../src/for-test.sd.mk
 make -j4 for-check-1
 grep '^for-check-1:' src/Subdir.mk || false
 
 : ----- for-check-2 -----
+reset_times
 echo 'for-check-2:' >>../lib/for-test.mk.in
 make -j4 for-check-2
 grep '^for-check-2:' lib/for-test.mk || false