Skip to content

Commit 7a5ef0f

Browse files
esteffinEnrico Steffinlongo
authored and
Enrico Steffinlongo
committed
Removed --no-malloc-may-fail from goto-synthesizer test runners
1 parent b96d0b5 commit 7a5ef0f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

regression/goto-synthesizer/chain.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ fi
3737
rm -f "${name}-mod.gb"
3838
rm -f "${name}-mod-2.gb"
3939
echo "Running goto-instrument: "
40-
$goto_instrument --no-malloc-may-fail ${args_inst} "${name}.gb" "${name}-mod.gb"
40+
$goto_instrument ${args_inst} "${name}.gb" "${name}-mod.gb"
4141
if [ ! -e "${name}-mod.gb" ] ; then
4242
cp "$name.gb" "${name}-mod.gb"
4343
elif echo $args_inst | grep -q -- "--dump-c" ; then
@@ -53,9 +53,9 @@ elif echo $args_inst | grep -q -- "--dump-c" ; then
5353
fi
5454
echo "Running goto-synthesizer: "
5555
if echo $args_synthesizer | grep -q -- "--dump-loop-contracts" ; then
56-
$goto_synthesizer ${args_synthesizer} --no-malloc-may-fail "${name}-mod.gb"
56+
$goto_synthesizer ${args_synthesizer} "${name}-mod.gb"
5757
else
58-
$goto_synthesizer ${args_synthesizer} --no-malloc-may-fail "${name}-mod.gb" "${name}-mod-2.gb"
58+
$goto_synthesizer ${args_synthesizer} "${name}-mod.gb" "${name}-mod-2.gb"
5959
echo "Running CBMC: "
6060
$cbmc ${args_cbmc} "${name}-mod-2.gb"
6161
fi

0 commit comments

Comments
 (0)