chiark / gitweb /
test/example/check: Make sections appear in stderr output
[subdirmk.git] / tests / example / check
index a5b27ba043da0ce0485ff9ad9a509747557f21ee..b7cf6dfd3a82d435a0fffc5fe761383af4d98e4f 100755 (executable)
@@ -6,7 +6,7 @@ cd example
 SUBDIRMK_REGEN_NDEBUG=''
 export SUBDIRMK_REGEN_NDEBUG
 
-#----- in-tree build -----
+----- in-tree build -----
 
 git clean -xdff
 ./autogen.sh && ./configure
@@ -14,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
@@ -24,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.