summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Campbell2017-08-28 15:18:26 +0100
committerBrian Campbell2017-08-28 15:18:26 +0100
commitf017d5dbc236f867f762be26cb116d659e6ccca6 (patch)
tree6fd25013e9a71f866cfd01433e12e946ee9e74fa
parent96631188f9625fefc06d2148c68e13a4d6c283c1 (diff)
Update test script for gen_lib changes
-rwxr-xr-xtest/mono/test.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mono/test.sh b/test/mono/test.sh
index 0e2ad40b..8a88e2e3 100755
--- a/test/mono/test.sh
+++ b/test/mono/test.sh
@@ -30,9 +30,9 @@ while read -u 3 TEST ARGS; do
echo "$TEST lem - ocaml"
rm -f -- "$OUTDIR"/*
"$SAILDIR/sail" -lem "$SAILDIR/lib/prelude.sail" "$DIR/$TEST".sail -o "$OUTDIR/testout" $ARGS $@
- "$LEMDIR/bin/lem" -ocaml -lib "$SAILDIR/src/lem_interp" "$SAILDIR/src/gen_lib/sail_values.lem" "$SAILDIR/src/gen_lib/state.lem" testout_embed_types_sequential.lem testout_embed_sequential.lem -outdir "$OUTDIR"
+ "$LEMDIR/bin/lem" -ocaml -lib "$SAILDIR/src/lem_interp" "$SAILDIR/src/gen_lib/sail_values.lem" "$SAILDIR/src/gen_lib/sail_operators_mwords.lem" "$SAILDIR/src/gen_lib/state.lem" testout_embed_types_sequential.lem testout_embed_sequential.lem -outdir "$OUTDIR"
cp -- "$DIR"/test.ml "$OUTDIR"
- ocamlc -I "$ZARITH" "$ZARITH/zarith.cma" -dllpath "$ZARITH" -I "$LEMDIR/ocaml-lib" "$LEMDIR/ocaml-lib/extract.cma" -I "$SAILDIR/src/_build/lem_interp" "$SAILDIR/src/_build/lem_interp/extract.cma" sail_values.ml state.ml testout_embed_types_sequential.ml testout_embed_sequential.ml test.ml -o test
+ ocamlc -I "$ZARITH" "$ZARITH/zarith.cma" -dllpath "$ZARITH" -I "$LEMDIR/ocaml-lib" "$LEMDIR/ocaml-lib/extract.cma" -I "$SAILDIR/src/_build/lem_interp" "$SAILDIR/src/_build/lem_interp/extract.cma" sail_values.ml sail_operators_mwords.ml state.ml testout_embed_types_sequential.ml testout_embed_sequential.ml test.ml -o test
./test
fi
done