summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJames O'Doherty <james@theodohertyfamily.com>2026-05-22 11:20:24 -0400
committerJames O'Doherty <james@theodohertyfamily.com>2026-05-22 11:20:24 -0400
commit079e4240534cbdc8751f1a127def20f2d1e58da6 (patch)
tree3765ab0df3be656eac664a216158ef409e29e6e5 /Makefile
parent3b56ccecf46b83fa9b0e4b6c54be6ffda395910c (diff)
Refactor lifecycle to support XDG_RUNTIME_DIR and fix binary pathing in E2E tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 02a1245..3dcd788 100644
--- a/Makefile
+++ b/Makefile
@@ -30,13 +30,13 @@ $(LAUNCHER_BIN): $(LAUNCHER_SRC)
test: clean
$(MAKE) $(BINARY)
@echo "Running tests with WG_WRAP_BIN=$(shell pwd)/$(BINARY)"
- WG_WRAP_BIN=$(shell pwd)/$(BINARY) go test -v ./...
+ WG_WRAP_BIN=$(shell pwd)/$(BINARY) go test -v -race ./...
# Run fuzzing tests
fuzz: clean
$(MAKE) $(BINARY)
@echo "Running fuzzing with WG_WRAP_BIN=$(shell pwd)/$(BINARY)"
- WG_WRAP_BIN=$(shell pwd)/$(BINARY) go test -v -fuzz=FuzzArgumentIntegrity -parallel $(FUZZ_PARALLEL) -fuzztime=$(FUZZ_TIME) ./tests/e2e/fuzz_args_test.go
+ WG_WRAP_BIN=$(shell pwd)/$(BINARY) go test -v -race -fuzz=FuzzArgumentIntegrity -parallel $(FUZZ_PARALLEL) -fuzztime=$(FUZZ_TIME) ./tests/e2e/fuzz_args_test.go
clean:
rm -f $(BINARY) $(LAUNCHER_BIN)