mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-27 07:19:03 -04:00

Add missing -### to the driver to ensure that we dont try to run the actual command. The host may not support the IAS. Should fix the SCEI buildbots. llvm-svn: 306123
8 lines
382 B
C
8 lines
382 B
C
// REQUIRES: nozlib
|
|
|
|
// RUN: %clang -### -fintegrated-as -gz -c %s 2>&1 | FileCheck %s -check-prefix CHECK-WARN
|
|
// RUN: %clang -### -fintegrated-as -gz=none -c %s 2>&1 | FileCheck -allow-empty -check-prefix CHECK-NOWARN %s
|
|
|
|
// CHECK-WARN: warning: cannot compress debug sections (zlib not installed)
|
|
// CHECK-NOWARN-NOT: warning: cannot compress debug sections (zlib not installed)
|