about summary refs log tree commit homepage
path: root/t/httpd.t
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-04-19 23:19:37 +0000
committerEric Wong <e@yhbt.net>2020-04-20 20:18:21 +0000
commit6e07def560b211d9a1a3221862e72b7aeb4a31b3 (patch)
treeb6e3b54f928145b3f1c05bd5b0444f70f7eabd4f /t/httpd.t
parent47acfe0e9d09e907393465e155e114e8fdc5f5a1 (diff)
downloadpublic-inbox-6e07def560b211d9a1a3221862e72b7aeb4a31b3.tar.gz
Barely noticeable on Linux, but this gives a 1-2% speedup
on a FreeBSD 11.3 VM and lets us use built-in redirects
rather than relying on /bin/sh.
Diffstat (limited to 't/httpd.t')
-rw-r--r--t/httpd.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/httpd.t b/t/httpd.t
index 11511c73..61aec3b4 100644
--- a/t/httpd.t
+++ b/t/httpd.t
@@ -64,22 +64,22 @@ EOF
                 is($conn->read($buf, 1), 0, "EOF");
         }
 
-        is(system(qw(git clone -q --mirror),
+        is(xsys(qw(git clone -q --mirror),
                         "http://$host:$port/$group", "$tmpdir/clone.git"),
                 0, 'smart clone successful');
 
         # ensure dumb cloning works, too:
-        is(system('git', "--git-dir=$maindir",
+        is(xsys('git', "--git-dir=$maindir",
                 qw(config http.uploadpack false)),
                 0, 'disable http.uploadpack');
-        is(system(qw(git clone -q --mirror),
+        is(xsys(qw(git clone -q --mirror),
                         "http://$host:$port/$group", "$tmpdir/dumb.git"),
                 0, 'clone successful');
 
         ok($td->kill, 'killed httpd');
         $td->join;
 
-        is(system('git', "--git-dir=$tmpdir/clone.git",
+        is(xsys('git', "--git-dir=$tmpdir/clone.git",
                   qw(fsck --no-verbose)), 0,
                 'fsck on cloned directory successful');
 }