summaryrefslogtreecommitdiff
path: root/vendor/github.com/wk8/go-ordered-map/v2/Makefile
diff options
context:
space:
mode:
authorLibravatar kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com>2025-01-14 14:23:28 +0000
committerLibravatar GitHub <noreply@github.com>2025-01-14 14:23:28 +0000
commitb8ef9fc4bcccc6c024edaa8e9c91a6bf87f83dd9 (patch)
tree68eaf966c80237e18993e887c8583355f0943ca7 /vendor/github.com/wk8/go-ordered-map/v2/Makefile
parent[chore] better dns validation (#3644) (diff)
downloadgotosocial-b8ef9fc4bcccc6c024edaa8e9c91a6bf87f83dd9.tar.xz
bump uptrace/bun dependencies from 1.2.6 to 1.2.8 (#3645)
Diffstat (limited to 'vendor/github.com/wk8/go-ordered-map/v2/Makefile')
-rw-r--r--vendor/github.com/wk8/go-ordered-map/v2/Makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/vendor/github.com/wk8/go-ordered-map/v2/Makefile b/vendor/github.com/wk8/go-ordered-map/v2/Makefile
deleted file mode 100644
index 6e0e18a1b..000000000
--- a/vendor/github.com/wk8/go-ordered-map/v2/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-.DEFAULT_GOAL := all
-
-.PHONY: all
-all: test_with_fuzz lint
-
-# the TEST_FLAGS env var can be set to eg run only specific tests
-TEST_COMMAND = go test -v -count=1 -race -cover $(TEST_FLAGS)
-
-.PHONY: test
-test:
- $(TEST_COMMAND)
-
-.PHONY: bench
-bench:
- go test -bench=.
-
-FUZZ_TIME ?= 10s
-
-# see https://github.com/golang/go/issues/46312
-# and https://stackoverflow.com/a/72673487/4867444
-# if we end up having more fuzz tests
-.PHONY: test_with_fuzz
-test_with_fuzz:
- $(TEST_COMMAND) -fuzz=FuzzRoundTripJSON -fuzztime=$(FUZZ_TIME)
- $(TEST_COMMAND) -fuzz=FuzzRoundTripYAML -fuzztime=$(FUZZ_TIME)
-
-.PHONY: fuzz
-fuzz: test_with_fuzz
-
-.PHONY: lint
-lint:
- golangci-lint run