mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-01-01 01:33:51 +00:00
10 lines
249 B
Text
10 lines
249 B
Text
|
# -*-perl-*-
|
||
|
|
||
|
$description = "Make sure make exits with an error if stdout is full.";
|
||
|
|
||
|
if (-e '/dev/full') {
|
||
|
run_make_test('', '-v > /dev/full', '#MAKE#: write error', 256);
|
||
|
}
|
||
|
|
||
|
1;
|