chiark / gitweb /
test/example/check: Make sections appear in stderr output
[subdirmk.git] / tests / example / check
index d5d282ffc4ba4816a36889b44f57516a7a7ceef7..b7cf6dfd3a82d435a0fffc5fe761383af4d98e4f 100755 (executable)
@@ -3,7 +3,10 @@ set -ex
 
 cd example
 
-#----- in-tree build -----
+SUBDIRMK_REGEN_NDEBUG=''
+export SUBDIRMK_REGEN_NDEBUG
+
+: ----- in-tree build -----
 
 git clean -xdff
 ./autogen.sh && ./configure
@@ -11,7 +14,7 @@ make -j4 all check
 make -j4 clean
 make -j4 all check
 
-#----- out of tree build -----
+----- out of tree build -----
 
 git clean -xdff
 mkdir build
@@ -21,14 +24,16 @@ cd build
 .././autogen.sh && ../configure
 make -j4 all check
 
-#----- testing rebuild on input change -----
+----- testing rebuild on input change -----
 
-echo '# for-check 1' >>../src/for-test.sd.mk
-make -j4
-grep '^# for-check 1' src/Subdir.mk || false
+: ----- for-check-1 -----
+echo 'for-check-1:' >>../src/for-test.sd.mk
+make -j4 for-check-1
+grep '^for-check-1:' src/Subdir.mk || false
 
-echo '# for-check 2' >>../lib/for-test.mk.in
-make -j4
-grep '^# for-check 2' lib/for-test.mk || false
+: ----- for-check-2 -----
+echo 'for-check-2:' >>../lib/for-test.mk.in
+make -j4 for-check-2
+grep '^for-check-2:' lib/for-test.mk || false
 
 echo ok.