aboutsummaryrefslogtreecommitdiff
path: root/test-suite/misc/exitstatus.sh
blob: afc415b2dacc906746fb88cb911b981057b3d803 (plain)
1
2
3
4
5
#!/bin/sh
$coqc misc/exitstatus/illtyped.v
P=$?
printf "On ill-typed input, coqc returned %s.\n" "$P"
if [ $P = 1 ]; then exit 0; else exit 1; fi