[llvm] r270992 - Attemp to fix build bot after r270987

George Rimar via llvm-commits llvm-commits at lists.llvm.org
Fri May 27 05:52:31 PDT 2016


Author: grimar
Date: Fri May 27 07:52:30 2016
New Revision: 270992

URL: http://llvm.org/viewvc/llvm-project?rev=270992&view=rev
Log:
Attemp to fix build bot after r270987

It was: "Recommit 270977 - [llvm-mc] - Teach llvm-mc to generate zlib styled compression sections."

Fix:
since test requires no zlib available and r270987 changed the 
compression flag for llvm-mc to mandatory specify the compression style,
then just add 2 available styles to this test.

Modified:
    llvm/trunk/test/MC/ELF/nocompression.s

Modified: llvm/trunk/test/MC/ELF/nocompression.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/ELF/nocompression.s?rev=270992&r1=270991&r2=270992&view=diff
==============================================================================
--- llvm/trunk/test/MC/ELF/nocompression.s (original)
+++ llvm/trunk/test/MC/ELF/nocompression.s Fri May 27 07:52:30 2016
@@ -1,4 +1,5 @@
-// RUN: not llvm-mc -filetype=obj -compress-debug-sections -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
+// RUN: not llvm-mc -filetype=obj -compress-debug-sections=zlib -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
+// RUN: not llvm-mc -filetype=obj -compress-debug-sections=zlib-gnu -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
 
 // REQUIRES: nozlib
 




More information about the llvm-commits mailing list