diff options
author | George Rimar <grimar@accesssoftek.com> | 2016-05-27 12:52:30 +0000 |
---|---|---|
committer | George Rimar <grimar@accesssoftek.com> | 2016-05-27 12:52:30 +0000 |
commit | 7951fbf1a8f3057cf9ebf52e2ee39bac6a54e368 (patch) | |
tree | 22711550daccc5bacbcd53c743f7072a6dbc4a04 | |
parent | 2787e459c824d8fe2c8e821f46413131c32916a2 (diff) | |
download | bcm5719-llvm-7951fbf1a8f3057cf9ebf52e2ee39bac6a54e368.tar.gz bcm5719-llvm-7951fbf1a8f3057cf9ebf52e2ee39bac6a54e368.zip |
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.
llvm-svn: 270992
-rw-r--r-- | llvm/test/MC/ELF/nocompression.s | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/test/MC/ELF/nocompression.s b/llvm/test/MC/ELF/nocompression.s index e7b01f7ad47..1b535fde758 100644 --- a/llvm/test/MC/ELF/nocompression.s +++ b/llvm/test/MC/ELF/nocompression.s @@ -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 |