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 48 49 50 51 52
|
#!/bin/bash
export COQBIN=$BIN
export PATH=$COQBIN:$PATH
TMP=`mktemp -d`
cd $TMP
cat > coq_environment.txt <<EOT
# we override COQLIB because we can
COQLIB="$TMP/overridden" # bla bla
COQCORELIB="$TMP/overridden" # bla bla
OCAMLFIND="$TMP/overridden"
FOOBAR="one more"
EOT
cp $BIN/coqc .
cp $BIN/coq_makefile .
mkdir -p overridden/tools/
cp $COQLIB/../coq-core/tools/CoqMakefile.in overridden/tools/
unset COQLIB
N=`./coqc -config | grep COQLIB | grep /overridden | wc -l`
if [ $N -ne 1 ]; then
echo COQLIB not overridden by coq_environment
coqc -config
exit 1
fi
N=`./coqc -config | grep OCAMLFIND | grep /overridden | wc -l`
if [ $N -ne 1 ]; then
echo OCAMLFIND not overridden by coq_environment
coqc -config
exit 1
fi
./coq_makefile -o CoqMakefile -R . foo > /dev/null
N=`grep COQMF_OCAMLFIND CoqMakefile.conf | grep /overridden | wc -l`
if [ $N -ne 1 ]; then
echo COQMF_OCAMLFIND not overridden by coq_environment
cat CoqMakefile.conf
exit 1
fi
export COQLIB="/overridden2"
N=`./coqc -config | grep COQLIB | grep /overridden2 | wc -l`
if [ $N -ne 1 ]; then
echo COQLIB not overridden by COQLIB when coq_environment present
coqc -config
exit 1
fi
rm -rf $TMP
exit 0
|