diff options
Diffstat (limited to 't/io')
-rwxr-xr-x | t/io/read.t | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/io/read.t b/t/io/read.t index 16d32b189c..b27fde17c7 100755 --- a/t/io/read.t +++ b/t/io/read.t @@ -15,8 +15,12 @@ read(A,$b,1,4); close(A); +unlink("a"); + if ($b eq "\000\000\000\000_") { print "ok 1\n"; } else { # Probably "\000bcd_" print "not ok 1\n"; } + +unlink 'a'; |