aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/050.sh
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-08-13 02:30:59 +0900
committernsfisis <nsfisis@gmail.com>2025-08-15 10:06:21 +0900
commit98cd02501c6622437ea348ef91f8cb38c2d1315e (patch)
tree99d5348f240bf3b3d4bf5e518bcf2974bf8c32fd /tests/050.sh
parenta5ab4f4dfacd1938a64df4d07df346774f62c541 (diff)
downloadducc-98cd02501c6622437ea348ef91f8cb38c2d1315e.tar.gz
ducc-98cd02501c6622437ea348ef91f8cb38c2d1315e.tar.zst
ducc-98cd02501c6622437ea348ef91f8cb38c2d1315e.zip
refactor: refactor tests
Diffstat (limited to 'tests/050.sh')
-rw-r--r--tests/050.sh19
1 files changed, 1 insertions, 18 deletions
diff --git a/tests/050.sh b/tests/050.sh
index 7e05ec2..96f28fe 100644
--- a/tests/050.sh
+++ b/tests/050.sh
@@ -3,27 +3,10 @@ set -e
cat <<'EOF' > expected
hello, world
EOF
-
-cat <<'EOF' > main.c
+bash ../../test_diff.sh <<'EOF'
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 -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