From e5e71998afce981355686f097c8c2e08dd195aed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Mengu=C3=A9?= Date: Mon, 4 Mar 2024 22:37:21 +0100 Subject: [PATCH] gitignore: ignore "go test -c" binaries Ignore binaries produced by "go test -c". --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 5aacdb7cc..6e1bb22a2 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,9 @@ _testmain.go *.exe .DS_Store + +# Output of "go test -c" +/assert/assert.test +/require/require.test +/suite/suite.test +/mock/mock.test