X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=blobdiff_plain;f=tests%2Fexample%2Fcheck;h=a051e8ed112275ad52004dd53467742a996fc27d;hb=056283726668515d212889fed6fadb833c9c34c2;hp=143fe05dfe370b84398cbaad68f4488557570c8d;hpb=3ce4fab1bb4c299cdf639dcb36b4a29079705925;p=subdirmk.git diff --git a/tests/example/check b/tests/example/check index 143fe05..a051e8e 100755 --- a/tests/example/check +++ b/tests/example/check @@ -1,22 +1,14 @@ #!/bin/sh set -ex -cd example +. tests/build-common -SUBDIRMK_REGEN_NDEBUG='' -export SUBDIRMK_REGEN_NDEBUG +make_copy example -: ----- in-tree build ----- - -git clean -xdff -./autogen.sh && ./configure -make -j4 all check -make -j4 clean -make -j4 all check +cd tests/example/example : ----- out of tree build ----- -git clean -xdff mkdir build cd build >>../src/for-test.sd.mk @@ -27,9 +19,17 @@ make -j4 all check : ----- testing rebuild on input change ----- reset_times () { + cd .. + + find ! -path './build/*' -type f -print0 \ + | xargs -0 \ + touch -hmd 'now -2000 seconds' -- + + cd build + find -type f -print0 \ | xargs -0 \ - touch -hmd 'now -1 seconds' -- + touch -hmd 'now -1000 seconds' -- } : ----- for-check-1 -----