diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-06-03 23:54:06 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-06-06 23:51:49 +0200 |
commit | d3b5c153af6998e2fd64bfc2b3033b2b5526a8cf (patch) | |
tree | 68707b312b89e056835f0ceb7ce368aa35784c8e /tests/http2-server.pl | |
parent | bf05606ef1f7a982c821396c3ef9fddeb4a1b011 (diff) | |
download | curl-d3b5c153af6998e2fd64bfc2b3033b2b5526a8cf.tar.gz |
runtests: make stripfile work on stdout as well
... and have test 1700 use that to strip out the nghttpx server: headers
Diffstat (limited to 'tests/http2-server.pl')
-rwxr-xr-x | tests/http2-server.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/http2-server.pl b/tests/http2-server.pl index 56b7ccec8..72ed12e85 100755 --- a/tests/http2-server.pl +++ b/tests/http2-server.pl @@ -72,4 +72,4 @@ my $cmdline="$nghttpx --backend=127.0.0.1,8990 ". "--pid-file=$pidfile ". "--errorlog-file=$logfile"; print "RUN: $cmdline\n" if($verbose); -system("$cmdline"); +system("$cmdline 2>/dev/null"); |