Help for this page

Select Code to Download


  1. or download this
    use Errno qw( ENOSPC );
    {
        local *CORE::GLOBAL::print = sub { $! = ENOSPC; return};
        # make test call
        # see what happens when a device is full
    }
    
  2. or download this
    {
        open local(LOG), '>>', '/dev/full' or die $!;
        # /dev/full is a Linux thing
        # call the test
    }