blob: 40ec80acd761e01dd5f09430df9e5a0193326f3c [file] [log] [blame]
Saleem Abdulrasoold064e912017-06-23 15:34:16 +00001// REQUIRES: zlib
2// REQUIRES: x86-registered-target
3
4// RUN: %clang -### -target i686-unknown-linux-gnu -fno-integrated-as -Wa,-compress-debug-sections -c %s 2>&1 | FileCheck -check-prefix CHECK-_COMPRESS_DEBUG_SECTIONS %s
5// CHECK-_COMPRESS_DEBUG_SECTIONS: "-compress-debug-sections"
6
7// RUN: %clang -### -target i686-unknown-linux-gnu -fno-integrated-as -Wa,--compress-debug-sections -c %s 2>&1 | FileCheck -check-prefix CHECK-__COMPRESS_DEBUG_SECTIONS %s
8// CHECK-__COMPRESS_DEBUG_SECTIONS: "--compress-debug-sections"
9
10// RUN: %clang -### -target i686-unknown-linux-gnu -fno-integrated-as -Wa,--compress-debug-sections -Wa,--nocompress-debug-sections -c %s 2>&1 | FileCheck -check-prefix CHECK-POSNEG %s
11// CHECK-POSNEG: "--compress-debug-sections"
12// CHECK-POSNEG: "--nocompress-debug-sections"
13
14// RUN: %clang -### -target i686-unknown-linux-gnu -fno-integrated-as -Wa,-compress-debug-sections -Wa,--compress-debug-sections -c %s 2>&1 | FileCheck -check-prefix CHECK-MULTIPLE %s
15// CHECK-MULTIPLE: "-compress-debug-sections"
16// CHECK-MULTIPLE: "--compress-debug-sections"
17
18// RUN: %clang -### -target i686-unknown-linux-gnu -fno-integrated-as -gz -x assembler -c %s 2>&1 | FileCheck -check-prefix CHECK-OPT_GZ %s
19// RUN: %clang -### -target i686-unknown-linux-gnu -fno-integrated-as -gz -c %s 2>&1 | FileCheck -check-prefix CHECK-OPT_GZ %s
Fangrui Song2484e912020-10-19 23:05:26 -070020// CHECK-OPT_GZ: "--compress-debug-sections=zlib"
Saleem Abdulrasoold064e912017-06-23 15:34:16 +000021
22// RUN: %clang -### -target i686-unknown-linux-gnu -fno-integrated-as -gz=none -x assembler -c %s 2>&1 | FileCheck -check-prefix CHECK-OPT_GZ_EQ_NONE %s
23// RUN: %clang -### -target i686-unknown-linux-gnu -fno-integrated-as -gz=none -c %s 2>&1 | FileCheck -check-prefix CHECK-OPT_GZ_EQ_NONE %s
Fangrui Songbaabc872019-05-11 01:14:50 +000024// CHECK-OPT_GZ_EQ_NONE: "--compress-debug-sections=none"
Saleem Abdulrasoold064e912017-06-23 15:34:16 +000025
26// RUN: %clang -### -target i686-unknown-linux-gnu -fno-integrated-as -gz=zlib -x assembler -c %s 2>&1 | FileCheck -check-prefix CHECK-OPT_GZ_EQ_ZLIB %s
27// RUN: %clang -### -target i686-unknown-linux-gnu -fno-integrated-as -gz=zlib -c %s 2>&1 | FileCheck -check-prefix CHECK-OPT_GZ_EQ_ZLIB %s
Fangrui Songbaabc872019-05-11 01:14:50 +000028// CHECK-OPT_GZ_EQ_ZLIB: "--compress-debug-sections=zlib"
Saleem Abdulrasoold064e912017-06-23 15:34:16 +000029
30// RUN: %clang -### -target i686-unknown-linux-gnu -fno-integrated-as -gz=zlib-gnu -x assembler -c %s 2>&1 | FileCheck -check-prefix CHECK-OPT_GZ_EQ_ZLIB_GNU %s
31// RUN: %clang -### -target i686-unknown-linux-gnu -fno-integrated-as -gz=zlib-gnu -c %s 2>&1 | FileCheck -check-prefix CHECK-OPT_GZ_EQ_ZLIB_GNU %s
Fangrui Songbaabc872019-05-11 01:14:50 +000032// CHECK-OPT_GZ_EQ_ZLIB_GNU: "--compress-debug-sections=zlib-gnu"
Saleem Abdulrasoold064e912017-06-23 15:34:16 +000033
34// RUN: %clang -### -target i686-unknown-linux-gnu -fno-integrated-as -gz=invalid -x assembler -c %s 2>&1 | FileCheck -check-prefix CHECK-OPT_GZ_EQ_INVALID %s
35// RUN: %clang -### -target i686-unknown-linux-gnu -fno-integrated-as -gz=invalid -c %s 2>&1 | FileCheck -check-prefix CHECK-OPT_GZ_EQ_INVALID %s
36// CHECK-OPT_GZ_EQ_INVALID: error: unsupported argument 'invalid' to option 'gz='
37