1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
#!/usr/bin/bash
. ../template/path-init.sh
rm -rf _test
mkdir _test
find . -maxdepth 1 -not -name . -not -name _test -exec cp -r '{}' -t _test ';'
cd _test || exit 1
# check cmd line arg is included in coqdep
# preserves order of args (cmd line args last)
actual=$(rocq makefile -sources-of -f _CoqProject -o CoqMakefile b.v)
expected="x/a.v b.v"
if [ "$actual" != "$expected" ]; then
echo actual: $actual
echo expected: $expected
exit 1
fi
# correct compile steps reflecting dependency on cmd line arg
rocq makefile -f _CoqProject -o CoqMakefile b.v
make -f CoqMakefile > makeout
cat >expected <<EOT
ROCQ DEP VFILES
ROCQ compile b.v
ROCQ compile x/a.v
EOT
grep -v "make" makeout >actual
diff -u actual expected
# new file is included without running rocq makefile
cat >x/c.v <<EOT
Require Import T.x.a.
EOT
make -f CoqMakefile clean
make -f CoqMakefile > makeout
cat >expected <<EOT
ROCQ DEP VFILES
ROCQ compile b.v
ROCQ compile x/a.v
ROCQ compile x/c.v
EOT
grep -v "make" makeout >actual
diff -u actual expected
|