about summary refs log tree commit homepage
path: root/xt/git-http-backend.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 /xt/git-http-backend.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 'xt/git-http-backend.t')
-rw-r--r--xt/git-http-backend.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/xt/git-http-backend.t b/xt/git-http-backend.t
index f2ae44fe..2f02725a 100644
--- a/xt/git-http-backend.t
+++ b/xt/git-http-backend.t
@@ -83,13 +83,13 @@ SKIP: { # make sure Last-Modified + If-Modified-Since works with curl
         skip 'curl(1) not found', $nr unless $curl;
         my $url = "http://$host:$port/description";
         my $dst = "$tmpdir/desc";
-        is(system($curl, qw(-RsSf), '-o', $dst, $url), 0, 'curl -R');
+        is(xsys($curl, qw(-RsSf), '-o', $dst, $url), 0, 'curl -R');
         is((stat($dst))[9], $mtime, 'curl used remote mtime');
-        is(system($curl, qw(-sSf), '-z', $dst, '-o', "$dst.2", $url), 0,
+        is(xsys($curl, qw(-sSf), '-z', $dst, '-o', "$dst.2", $url), 0,
                 'curl -z noop');
         ok(!-e "$dst.2", 'no modification, nothing retrieved');
         utime(0, 0, $dst) or die "utime failed: $!";
-        is(system($curl, qw(-sSfR), '-z', $dst, '-o', "$dst.2", $url), 0,
+        is(xsys($curl, qw(-sSfR), '-z', $dst, '-o', "$dst.2", $url), 0,
                 'curl -z updates');
         ok(-e "$dst.2", 'faked modification, got new file retrieved');
 }