aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/019.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/019.sh')
-rw-r--r--tests/019.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/tests/019.sh b/tests/019.sh
deleted file mode 100644
index 33b2e7d..0000000
--- a/tests/019.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-touch expected
-test_diff <<'EOF'
-int printf();
-
-int main() {
- printf("");
- return 0;
-}
-EOF
-
-cat <<'EOF' > expected
-Hello, World!
-EOF
-test_diff <<'EOF'
-int printf();
-
-int main() {
- printf("Hello, World!\n");
- return 0;
-}
-EOF
-
-cat <<'EOF' > expected
-"Hello, World!"
-EOF
-test_diff <<'EOF'
-int printf();
-
-int main() {
- printf("\"Hello, World!\"\n");
- return 0;
-}
-EOF