Imported Upstream version 4.4
[platform/upstream/make.git] / tests / scripts / misc / close_stdout
1 #                                                                    -*-perl-*-
2
3 $description = "Make sure make exits with an error if stdout is full.";
4
5 -e '/dev/full' or return -1;
6
7 run_make_test("\n", '-v > /dev/full', '/^#MAKE#: write error/', 256);
8
9 1;