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.
33 lines
668 B
33 lines
668 B
#! /bin/sh
|
|
#
|
|
# Check Header Load/Store for BDD/ADD/CNFs:
|
|
# Load Header
|
|
# Write Information on Standard Output
|
|
#
|
|
|
|
EXE=@EXEEXT@
|
|
srcdir=@top_srcdir@
|
|
where=${srcdir}/dddmp/exp
|
|
exitval=0
|
|
|
|
echo "---------------------------------------------------------------------------"
|
|
echo "--------------------- TESTING Load and Write Header -----------------------"
|
|
echo "---------------------------------------------------------------------------"
|
|
../testdddmp$EXE << END
|
|
mi
|
|
50
|
|
hlb
|
|
${where}/4.bdd
|
|
hw
|
|
hlb
|
|
${where}/0.add
|
|
hw
|
|
hlc
|
|
${where}/4.cnf
|
|
hw
|
|
mq
|
|
quit
|
|
END
|
|
test $? != 1 && exitval=1
|
|
echo "-------------------------------- ... END ----------------------------------"
|
|
exit $exitval
|