diff options
Diffstat (limited to 'tests/050.sh')
| -rw-r--r-- | tests/050.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/050.sh b/tests/050.sh new file mode 100644 index 0000000..295ac2d --- /dev/null +++ b/tests/050.sh @@ -0,0 +1,29 @@ +set -e + +cat <<'EOF' > expected +hello, world +EOF + +cat <<'EOF' > main.c +int printf(); +int main() { + printf("hello, world\n"); + return 0; +} +EOF + +"$ducc" - < main.c > main.s +if [[ $? -ne 0 ]]; then + cat main.s >&2 + exit 1 +fi +gcc -Wl,-z,noexecstack -o a.out main.s +./a.out "$@" > output +exit_code=$? + +if [[ $exit_code -ne 0 ]]; then + echo "invalid exit code: $exit_code" >&2 + exit 1 +fi + +diff -u expected output |
