aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/073.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/073.sh')
-rw-r--r--tests/073.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/073.sh b/tests/073.sh
deleted file mode 100644
index c804692..0000000
--- a/tests/073.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-cat <<'EOF' > expected
-main.c
-main.c
-main.c
-EOF
-
-cat <<'EOF' > header.h
-#define A __FILE__
-EOF
-
-test_diff <<'EOF'
-#define B __FILE__
-#include "header.h"
-int printf();
-int main() {
- printf("%s\n", __FILE__);
- printf("%s\n", B);
- printf("%s\n", A);
-}
-EOF