* tests/scripts/features/temp_stdin: Ditto.
* tests/scripts/options/dash-f: Ditto.
unlink('hello.td');
-# Test DV 62088 : make sure we don't re-invoke for stdin makefiles.
+# Test SV 62088 : make sure we don't re-invoke for stdin makefiles.
# The test framework doesn't seem to have a good way to do this.
create_file('input.mk', "all:;\$(info all)\n");
run_make_test('', '-sf -', "all\n");
+
+# This close MUST come at the end of the test!!
close(STDIN);
unlink('input.mk');
rmdir($tdir);
}
+# This close MUST come at the end of the test!!
close(STDIN);
unlink('input.mk', 'bye.mk');
run_make_test('', "-f$bye $opt", $answer);
}
+
+# This close MUST come at the end of the test!!
close(STDIN);
unlink($hello, $bye, $byesrc);