diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-01-29 23:53:54 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-01-29 23:53:54 +0000 |
commit | c93a8722066ad25b24efd17c71c26b34eb42379a (patch) | |
tree | d25c576de3d434cc13a4ef4ff479592ae57cd77e /clang/test/Modules/compiler_builtins.m | |
parent | e8f900bdccb67a8c041ae8d68b40f3a18f9de271 (diff) | |
download | bcm5719-llvm-c93a8722066ad25b24efd17c71c26b34eb42379a.tar.gz bcm5719-llvm-c93a8722066ad25b24efd17c71c26b34eb42379a.zip |
Just disable the compiler-builtins module test on MSVC for now
llvm-svn: 149214
Diffstat (limited to 'clang/test/Modules/compiler_builtins.m')
-rw-r--r-- | clang/test/Modules/compiler_builtins.m | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/Modules/compiler_builtins.m b/clang/test/Modules/compiler_builtins.m index 3545604414a..38ce2c98333 100644 --- a/clang/test/Modules/compiler_builtins.m +++ b/clang/test/Modules/compiler_builtins.m @@ -1,6 +1,9 @@ // RUN: rm -rf %t // RUN: %clang -fsyntax-only -fmodules -fmodule-cache-path %t %s -Xclang -verify +// Note: disable test on MSVC, which doesn't have <complex.h>. +// REQUIRES: shell + @import __compiler_builtins.float_constants; float getFltMax() { return FLT_MAX; } |