chiark / gitweb /
build tests: Break out build-common
[subdirmk.git] / tests / example / check
index b7cf6dfd3a82d435a0fffc5fe761383af4d98e4f..d492068dfcafa71c5a45024ec5137c8787ef290e 100755 (executable)
@@ -1,10 +1,9 @@
 #!/bin/sh
 set -ex
 
-cd example
+. tests/build-common
 
-SUBDIRMK_REGEN_NDEBUG=''
-export SUBDIRMK_REGEN_NDEBUG
+cd example
 
 : ----- in-tree build -----
 
@@ -26,12 +25,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