From cefff85a054d64f124aa1f3e91b9425695aa210b Mon Sep 17 00:00:00 2001 From: James O'Doherty Date: Fri, 22 May 2026 10:51:00 -0400 Subject: Update Makefile and README to standardize build/test process and lauch fuzzer --- tests/e2e/arg_integrity_test.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests/e2e/arg_integrity_test.go') diff --git a/tests/e2e/arg_integrity_test.go b/tests/e2e/arg_integrity_test.go index 7121c2b..497a51d 100644 --- a/tests/e2e/arg_integrity_test.go +++ b/tests/e2e/arg_integrity_test.go @@ -20,7 +20,10 @@ func TestArgumentIntegrity(t *testing.T) { for _, payload := range payloads { t.Run(fmt.Sprintf("Payload_%s", payload), func(t *testing.T) { - binaryPath := GetBinaryPath() + binaryPath, err := GetBinaryPath() + if err != nil { + t.Skip("Skipping E2E test: wg-wrap binary not found (WG_WRAP_BIN not set)") + } cmd := exec.Command(binaryPath, "test-args", payload) out, err := cmd.CombinedOutput() if err != nil { -- cgit v1.2.3