From afe46025f51b83f2225c0d9cfe6ae202bb1b6d45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96zg=C3=BCr=20Kesim?= Date: Thu, 16 Jan 2020 15:56:12 +0100 Subject: [PATCH] Silence the output of make --- GetRuntimeAddresses/symbolyze/gdb_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GetRuntimeAddresses/symbolyze/gdb_test.go b/GetRuntimeAddresses/symbolyze/gdb_test.go index c76951d..3c1f543 100644 --- a/GetRuntimeAddresses/symbolyze/gdb_test.go +++ b/GetRuntimeAddresses/symbolyze/gdb_test.go @@ -15,7 +15,7 @@ import ( // test-binary `simple` that is linked against python3.7. If this fails, make // necessary adjustments to the Makefile and/or your environment and try again. func buildSimple() error { - cmd := exec.Command("make") + cmd := exec.Command("make", "-s") cmd.Dir = "testdata" cmd.Stdout = os.Stdout cmd.Stderr = os.Stderr