The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 

39 lines
959 B

#! /bin/sh
#
# Check BDDs from DDDMP-1.0:
# Load an Array of BDDs from DDDMP-1.0
# Store them
#
EXE=@EXEEXT@
srcdir=@top_srcdir@
where=${srcdir}/dddmp/exp
dest=.
exitval=0
echo "---------------------------------------------------------------------------"
echo "-------------------- TESTING Load BDD from DDDMP-1.0 ----------------------"
echo "---------------------------------------------------------------------------"
../testdddmp$EXE << END
mi
10
hlb
${where}/s27deltaDddmp1.bdd
hw
bal
${where}/s27deltaDddmp1.bdd
0
bas
${dest}/s27deltaDddmp1.bdd.tmp
0
mq
quit
END
test $? != 1 && exitval=1
echo "----------------------------- ... RESULTS ... -----------------------------"
diff --strip-trailing-cr --brief ${dest}/s27deltaDddmp1.bdd.tmp \
${where}/s27deltaDddmp1.bdd.bis
test $? != 0 && exitval=1
echo "-------------------------------- ... END ----------------------------------"
rm -f ${dest}/s27deltaDddmp1.bdd.tmp
exit $exitval