summaryrefslogtreecommitdiff
path: root/test/scripts/0000-Basic
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2020-02-20 14:39:14 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2020-02-21 17:08:28 +0000
commit2f2dd3a5b7af190a42d45fead6230bc1bb75483d (patch)
tree287fa5131c8bf9b9f5e4921b9ea13b9c55b5c6cf /test/scripts/0000-Basic
parent5399df8075b16fdc8a8fe4249972c2786fe6fcab (diff)
Allow for platforms not support abstract naming for Unix sockets
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", $_; }
****