From f1a18fb6993bcc7d646753c70faa0444abb8cc5c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20Storsj=C3=B6?= Date: Fri, 18 Jun 2021 15:20:13 +0300 Subject: [PATCH] [LLD] [MinGW] Silence the printouts in one test. NFC. This particular linker invocation is only run to check that we accept options, but we don't inspect the generated command line. As all other commands in the file have their output piped to FileCheck, the lit test doesn't print any other output; therefore silence this one for consistency as well. --- lld/test/MinGW/driver.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/test/MinGW/driver.test b/lld/test/MinGW/driver.test index 24a4207..cb164df 100644 --- a/lld/test/MinGW/driver.test +++ b/lld/test/MinGW/driver.test @@ -181,7 +181,7 @@ RUN: ld.lld -### -m i386pep foo.o --icf=all 2>&1 | FileCheck -check-prefix ICF % RUN: ld.lld -### -m i386pep foo.o -icf=all 2>&1 | FileCheck -check-prefix ICF %s ICF: -opt:icf -RUN: ld.lld -### -m i386pep --start-group foo.o --end-group +RUN: ld.lld -### -m i386pep --start-group foo.o --end-group 2> /dev/null RUN: ld.lld -### foo.o -m i386pe -shared --kill-at 2>&1 | FileCheck -check-prefix=KILL-AT %s RUN: ld.lld -### foo.o -m i386pe -shared -kill-at 2>&1 | FileCheck -check-prefix=KILL-AT %s -- 2.7.4