From 7a4ae106ec2be7bdac6a65d3bae8dd93149ec9ec Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Wed, 29 Dec 2021 18:16:00 +0000 Subject: [PATCH] switch to the new gg for the regress suite --- regress/lib.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/regress/lib.sh b/regress/lib.sh index e428aaa..cea11e2 100644 --- a/regress/lib.sh +++ b/regress/lib.sh @@ -1,6 +1,6 @@ failed= -gg="./gg" +gg="./../gg" gmid="./../gmid" current_test= @@ -78,19 +78,19 @@ setup_simple_test() { # usage: get # return the body of the request on stdout get() { - $gg -T10 -b $ggflags "gemini://localhost:10965/$1" + $gg -T10 $ggflags "gemini://localhost:10965/$1" || true } # usage: head # return the meta response line on stdout head() { - $gg -T10 -h $ggflags "gemini://localhost:10965/$1" + $gg -T10 -d header $ggflags "gemini://localhost:10965/$1" || true } # usage: raw # return both header and body raw() { - $gg -T10 $ggflags "gemini://localhost:10965/$1" + $gg -T10 -dwhole $ggflags "gemini://localhost:10965/$1" || true } # usage: fetch