diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-04-25 16:23:38 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-04-25 16:24:50 +0200 |
commit | 2a33417e1d0a301a191df5a50d00c99e43def1f2 (patch) | |
tree | 282a1d97366e245e3a98c8652f21b18c3dac2e38 /tests | |
parent | 446fb0518bd4525c679343dd88d75d13dd201be3 (diff) | |
download | curl-2a33417e1d0a301a191df5a50d00c99e43def1f2.tar.gz |
runtests: revert commenting out a line I did for debugging
Follow-up to 11091cd4d. It was not meant to be pushed!
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 051b23060..da3fac2e6 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2709,7 +2709,7 @@ sub cleardir { return 0; # can't open dir while($file = readdir(DIR)) { if(($file !~ /^\./)) { - #unlink("$dir/$file"); + unlink("$dir/$file"); $count++; } } |