chiark / gitweb /
tests: Add some section comments.
[subdirmk.git] / tests / check
index f0914dd597e456fd0a14287f1bb73d6834bcd44a..d5d282ffc4ba4816a36889b44f57516a7a7ceef7 100755 (executable)
@@ -2,12 +2,17 @@
 set -ex
 
 cd example
+
+#----- in-tree build -----
+
 git clean -xdff
 ./autogen.sh && ./configure
 make -j4 all check
 make -j4 clean
 make -j4 all check
 
+#----- out of tree build -----
+
 git clean -xdff
 mkdir build
 cd build
@@ -16,6 +21,8 @@ cd build
 .././autogen.sh && ../configure
 make -j4 all check
 
+#----- testing rebuild on input change -----
+
 echo '# for-check 1' >>../src/for-test.sd.mk
 make -j4
 grep '^# for-check 1' src/Subdir.mk || false