]> ruderich.org/simon Gitweb - safcm/safcm.git/commitdiff
Revert "ci: run tests with verbose output"
authorSimon Ruderich <simon@ruderich.org>
Tue, 20 Apr 2021 17:53:07 +0000 (19:53 +0200)
committerSimon Ruderich <simon@ruderich.org>
Wed, 21 Apr 2021 06:26:58 +0000 (08:26 +0200)
This reverts commit 444e9874424580361e00547b597d213370045057.

Turns out this is too noisy and less useful than I expected.

.builds/archlinux.yml
.builds/freebsd.yml
.builds/openbsd.yml
.gitlab-ci.yml
Makefile

index 90b0897fa8abb6ebe3780c1d68cfee45b601e1cb..d8ebea79af0a1702e0f0840a70749e9139934d37 100644 (file)
@@ -4,7 +4,7 @@ packages:
 tasks:
   - all: |
       cd safcm
 tasks:
   - all: |
       cd safcm
-      ./ci/run TESTFLAGS=-v
+      ./ci/run
       # Also run all tests as root
       sudo chown -Rh root:root .
       # Also run all tests as root
       sudo chown -Rh root:root .
-      sudo ./ci/run TESTFLAGS=-v
+      sudo ./ci/run
index 6f560cf20a87042173041242bbc0dfe38031eae9..e5dba6db9c7d32288bef957579373f7dee46caa5 100644 (file)
@@ -6,7 +6,7 @@ tasks:
   - all: |
       sudo ln -sf /usr/local/bin/gmake /usr/bin/make
       cd safcm
   - all: |
       sudo ln -sf /usr/local/bin/gmake /usr/bin/make
       cd safcm
-      ./ci/run TESTFLAGS=-v
+      ./ci/run
       # Also run all tests as root
       sudo chown -Rh root:wheel .
       # Also run all tests as root
       sudo chown -Rh root:wheel .
-      sudo ./ci/run TESTFLAGS=-v
+      sudo ./ci/run
index 05bb9a78d4a4ba4acfedbab773fba483f7a0c0da..7f1d40c9208e6ea97a15b0135c261d1c09a65e64 100644 (file)
@@ -14,8 +14,8 @@ tasks:
       doas ln -sf /usr/local/bin/gmake /usr/bin/make
       cd safcm
       # Go does not yet support -race on OpenBSD
       doas ln -sf /usr/local/bin/gmake /usr/bin/make
       cd safcm
       # Go does not yet support -race on OpenBSD
-      ./ci/run GOFLAGS= TESTFLAGS=-v
+      ./ci/run GOFLAGS=
       # Also run all tests as root (-R and -h conflict on OpenBSD)
       doas chown -R root:wheel .
       # Remove $HOME hack once Go 1.16 is available
       # Also run all tests as root (-R and -h conflict on OpenBSD)
       doas chown -R root:wheel .
       # Remove $HOME hack once Go 1.16 is available
-      doas /bin/sh -c "HOME=$HOME ./ci/run GOFLAGS= TESTFLAGS=-v"
+      doas /bin/sh -c "HOME=$HOME ./ci/run GOFLAGS="
index 2ffbdf32949529ed3a00e156a382d817279b9ff3..10f98119fbe3f117b91f93f7b888d91c2dc764fe 100644 (file)
@@ -8,7 +8,7 @@
     - ln -sf /usr/lib/go-1.16/bin/go $HOME/go/bin
     - ln -sf /usr/lib/go-1.16/bin/gofmt $HOME/go/bin
     #
     - ln -sf /usr/lib/go-1.16/bin/go $HOME/go/bin
     - ln -sf /usr/lib/go-1.16/bin/gofmt $HOME/go/bin
     #
-    - ./ci/run TESTFLAGS=-v
+    - ./ci/run
 
 debian-sid:
   <<: *template-docker
 
 debian-sid:
   <<: *template-docker
index c7569895201a26f030f971b8c42ca06e0816e108..f4cc011e6aa6abdab01f603e4d50d3193e54b8a0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@ safcm:
 
 test:
        go vet ./...
 
 test:
        go vet ./...
-       go test $(GOFLAGS) $(TESTFLAGS) ./...
+       go test $(GOFLAGS) ./...
 
 clean:
        rm -rf remote/helpers/
 
 clean:
        rm -rf remote/helpers/