diff options
| author | James O'Doherty <james@theodohertyfamily.com> | 2026-05-22 10:51:00 -0400 |
|---|---|---|
| committer | James O'Doherty <james@theodohertyfamily.com> | 2026-05-22 10:51:00 -0400 |
| commit | cefff85a054d64f124aa1f3e91b9425695aa210b (patch) | |
| tree | 4ad2df3ba37a52ee246da327c310aabaecb2b896 /tests/e2e/arg_integrity_test.go | |
| parent | 9131b0004e7c640cc028179e1d049a4c62210d94 (diff) | |
Update Makefile and README to standardize build/test process and lauch fuzzer
Diffstat (limited to 'tests/e2e/arg_integrity_test.go')
| -rw-r--r-- | tests/e2e/arg_integrity_test.go | 5 |
1 files changed, 4 insertions, 1 deletions
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 { |
