summaryrefslogtreecommitdiff
path: root/tests/scripts/options/dash-n
diff options
context:
space:
mode:
Diffstat (limited to 'tests/scripts/options/dash-n')
-rw-r--r--tests/scripts/options/dash-n17
1 files changed, 1 insertions, 16 deletions
diff --git a/tests/scripts/options/dash-n b/tests/scripts/options/dash-n
index 248e0c87..de19f42c 100644
--- a/tests/scripts/options/dash-n
+++ b/tests/scripts/options/dash-n
@@ -65,21 +65,6 @@ $answer = "$make_name: `a' is up to date.\n";
$answer = "$make_name: `a' is up to date.\n";
&compare_output($answer, &get_logfile(1));
-# TEST 4
-
-unlink(qw(a b));
-
-&run_make_with_options($makefile2, "-t -n", &get_logfile);
-
-open(DASH_N_LOG, ">>" . &get_logfile(1));
-print DASH_N_LOG "a exists but should not!\n" if -e 'a';
-print DASH_N_LOG "b exists but should not!\n" if -e 'b';
-close(DASH_N_LOG);
-
-&compare_output("touch b\ntouch a\n", &get_logfile(1));
-
-# CLEANUP
-
-unlink(qw(a b c));
+unlink('a', 'b', 'c');
1;