summaryrefslogtreecommitdiff
path: root/test/scripts/0000-Basic
diff options
context:
space:
mode:
Diffstat (limited to 'test/scripts/0000-Basic')
-rw-r--r--test/scripts/0000-Basic/04383
1 files changed, 2 insertions, 1 deletions
diff --git a/test/scripts/0000-Basic/0438 b/test/scripts/0000-Basic/0438
index a8287cf9f..28795d83a 100644
--- a/test/scripts/0000-Basic/0438
+++ b/test/scripts/0000-Basic/0438
@@ -13,8 +13,9 @@ killdaemon
exim -d -DSERVER=server -bd -oX PORT_D -oP DIR/spool/mypidfile
****
sleep 1
-ls DIR/spool
sudo perl
+system "ls DIR/spool | grep pid";
+print "\n";
open(IN, "<", "DIR/spool/mypidfile");
while (<IN>) { kill "TERM", $_; }
****