From 46e79e69ae866df88cb9442a7329c72662ed2db3 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 4 Oct 2025 15:33:07 +0900 Subject: refactor: rename test files --- tests/test_comma_operator.sh | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 tests/test_comma_operator.sh (limited to 'tests/test_comma_operator.sh') diff --git a/tests/test_comma_operator.sh b/tests/test_comma_operator.sh deleted file mode 100644 index 7c53845..0000000 --- a/tests/test_comma_operator.sh +++ /dev/null @@ -1,37 +0,0 @@ -cat <<'EOF' > expected -0 0 -1 1 -2 2 -3 3 -4 4 -EOF - -test_diff <<'EOF' -int printf(); - -int main() { - int i = 1000; - int j = 1000; - for (i = 0, j = 0; i < 5; i++, j++) { - printf("%d %d\n", i, j); - } -} -EOF - -cat <<'EOF' > expected -1 2 3 4 -0 0 5 -EOF - -test_diff <<'EOF' -int printf(); -int x, y, z = 5; -int main() { - int a, b; - a = 1, b = 2; - int c = 3, d = 4; - printf("%d %d %d %d\n", a, b, c, d); - printf("%d %d %d\n", x, y, z); -} -EOF - -- cgit v1.2.3-70-g09d2