Idris2/tests/chez/chez033/run
Edwin Brady 9bd32c4a3d Fix chez033 on windows
This prints lots of warnings since incremental compilation is not
available, so turn that off when running on windows for now.
2021-07-11 17:04:07 +01:00

10 lines
323 B
Plaintext

if [ "$OS" = "windows" ]; then
# incremental builds don't work on windows so we get lots of warnings,
# but we still need the test output to be correct
$1 --no-banner --no-color --console-width 0 Main.idr < input
else
$1 --no-banner --no-color --console-width 0 Main.idr --inc chez < input
fi
rm -rf build