forked from OSchip/llvm-project
Add missing triple to make -isysroot work
llvm-svn: 207479
This commit is contained in:
parent
1057e09432
commit
c829f19e24
|
@ -5,17 +5,17 @@
|
|||
|
||||
// Initial module build
|
||||
// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -fdisable-module-hash \
|
||||
// RUN: -isysroot %S/Inputs/System -fsyntax-only %s -verify
|
||||
// RUN: -isysroot %S/Inputs/System -triple x86_64-apple-darwin10 -fsyntax-only %s -verify
|
||||
// RUN: cp %t/cstd.pcm %t-saved/cstd.pcm
|
||||
|
||||
// Even with -Werror don't rebuild a system module
|
||||
// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -fdisable-module-hash \
|
||||
// RUN: -isysroot %S/Inputs/System -fsyntax-only %s -verify -Werror
|
||||
// RUN: -isysroot %S/Inputs/System -triple x86_64-apple-darwin10 -fsyntax-only %s -verify -Werror
|
||||
// RUN: diff %t/cstd.pcm %t-saved/cstd.pcm
|
||||
|
||||
// Unless -Wsystem-headers is on
|
||||
// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -fdisable-module-hash \
|
||||
// RUN: -isysroot %S/Inputs/System -fsyntax-only %s -verify \
|
||||
// RUN: -isysroot %S/Inputs/System -triple x86_64-apple-darwin10 -fsyntax-only %s -verify \
|
||||
// RUN: -Werror=unused -Wsystem-headers
|
||||
// RUN: not diff %t/cstd.pcm %t-saved/cstd.pcm
|
||||
|
||||
|
|
Loading…
Reference in New Issue