From 8057c2e8a3fc03f7771c5d09db0a2b3568dc57d2 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 11 May 2025 20:45:57 +0900 Subject: take source file name as cli arguments --- tests/050.sh | 29 +++++++++++++++++++++++++++++ tests/test_diff.sh | 2 +- tests/test_exit_code.sh | 2 +- tests/test_output.sh | 2 +- 4 files changed, 32 insertions(+), 3 deletions(-) create mode 100644 tests/050.sh (limited to 'tests') 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 diff --git a/tests/test_diff.sh b/tests/test_diff.sh index 8e938de..6520b42 100644 --- a/tests/test_diff.sh +++ b/tests/test_diff.sh @@ -1,6 +1,6 @@ cat > main.c -"$ducc" < main.c > main.s +"$ducc" main.c > main.s if [[ $? -ne 0 ]]; then cat main.s >&2 exit 1 diff --git a/tests/test_exit_code.sh b/tests/test_exit_code.sh index 490de5b..44d1e06 100644 --- a/tests/test_exit_code.sh +++ b/tests/test_exit_code.sh @@ -1,6 +1,6 @@ cat > main.c -"$ducc" < main.c > main.s +"$ducc" main.c > main.s if [[ $? -ne 0 ]]; then cat main.s >&2 exit 1 diff --git a/tests/test_output.sh b/tests/test_output.sh index 2f8b984..575e399 100644 --- a/tests/test_output.sh +++ b/tests/test_output.sh @@ -1,6 +1,6 @@ cat > main.c -"$ducc" < main.c > main.s +"$ducc" main.c > main.s if [[ $? -ne 0 ]]; then cat main.s >&2 exit 1 -- cgit v1.2.3-70-g09d2