mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-12-18 18:31:43 +03:00
f123fcaf84
This still seems to be failing on travis, so let's see what it looks like!
12 lines
218 B
Bash
Executable File
12 lines
218 B
Bash
Executable File
#!/bin/sh
|
|
|
|
${IDRIS2} --exec main Echo.idr > build/output
|
|
|
|
if ! [ -z "$(diff build/output expected)" ]; then
|
|
echo "TEST FAILURE: unexpected build/output: "
|
|
cat build/output
|
|
exit 2
|
|
else
|
|
echo "TEST SUCCESS"
|
|
fi
|