From aa9455c418f7a30575944618e02b8c71cebfb5c4 Mon Sep 17 00:00:00 2001 From: Alberto Bertogli Date: Sun, 22 Nov 2020 11:54:55 +0000 Subject: [PATCH] test: Ignore fexp in the regular Go build fexp is a testing utility, including it in the regular Go build confuses some automation as it can think it's part of chasquid proper. All other testing utilities are ignored via the "+build ignore" annotation for this reason, so this patch adds it to fexp to fix this issue. --- test/util/fexp.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/util/fexp.go b/test/util/fexp.go index eb1f820..2f43d4a 100644 --- a/test/util/fexp.go +++ b/test/util/fexp.go @@ -1,3 +1,5 @@ +// +build ignore + // Fetch an URL, and check if the response matches what we expect. // // Useful for testing HTTP(s) servers.