From d75f9f86e5b949ffd9eb7f5184ccf3a365891f04 Mon Sep 17 00:00:00 2001 From: Maksim An Date: Wed, 28 Jul 2021 12:57:36 -0700 Subject: [PATCH] tests: increase opengcs tests verbosity currently opengcs unit tests are not verbose enough and it's hard to tell which tests are actually run. Increase verbosisty by adding -v flag Signed-off-by: Maksim An --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 16dd25b6a2..a8f5516cd0 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ clean: rm -rf bin deps rootfs out test: - cd $(SRCROOT) && go test ./internal/guest/... + cd $(SRCROOT) && go test -v ./internal/guest/... out/delta.tar.gz: bin/init bin/vsockexec bin/cmd/gcs bin/cmd/gcstools Makefile @mkdir -p out @@ -84,4 +84,4 @@ bin/init: init/init.o vsockexec/vsock.o %.o: %.c @mkdir -p $(dir $@) - $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $< \ No newline at end of file + $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<