aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/043.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/043.sh')
-rw-r--r--tests/043.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/043.sh b/tests/043.sh
deleted file mode 100644
index ae00bd3..0000000
--- a/tests/043.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-cat <<'EOF' > expected
-42,123
-EOF
-test_diff <<'EOF'
-int printf();
-
-int main() {
- int _a = 42;
- int _b = 123;
-
- printf("%d,%d\n", _a, _b);
-
- return 0;
-}
-EOF