summaryrefslogtreecommitdiff
path: root/tests/scripts/misc/close_stdout
diff options
context:
space:
mode:
Diffstat (limited to 'tests/scripts/misc/close_stdout')
-rw-r--r--tests/scripts/misc/close_stdout3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/scripts/misc/close_stdout b/tests/scripts/misc/close_stdout
index c8c839e7..c4edbd66 100644
--- a/tests/scripts/misc/close_stdout
+++ b/tests/scripts/misc/close_stdout
@@ -4,6 +4,9 @@ $description = "Make sure make exits with an error if stdout is full.";
-e '/dev/full' or return -1;
+# In Strawberry Perl, /dev/full "exists" but does nothing :-/
+$port_type eq 'W32' and return -1;
+
run_make_test("\n", '-v > /dev/full', '/^#MAKE#: write error/', 256);
1;