diff options
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/CMakeLists.txt | 2 | ||||
-rw-r--r-- | clang/test/Modules/module_container.m | 14 | ||||
-rw-r--r-- | clang/test/PCH/floating-literal.c | 1 |
3 files changed, 1 insertions, 16 deletions
diff --git a/clang/test/CMakeLists.txt b/clang/test/CMakeLists.txt index 526f129bab5..591a9272ae6 100644 --- a/clang/test/CMakeLists.txt +++ b/clang/test/CMakeLists.txt @@ -58,7 +58,7 @@ set(CLANG_TEST_PARAMS if( NOT CLANG_BUILT_STANDALONE ) list(APPEND CLANG_TEST_DEPS llvm-config - llc opt FileCheck count not llvm-symbolizer llvm-profdata llvm-objdump + llc opt FileCheck count not llvm-symbolizer llvm-profdata ) endif() diff --git a/clang/test/Modules/module_container.m b/clang/test/Modules/module_container.m deleted file mode 100644 index 348a869ad26..00000000000 --- a/clang/test/Modules/module_container.m +++ /dev/null @@ -1,14 +0,0 @@ -@import DependsOnModule; -// REQUIRES: x86-registered-target -// RUN: rm -rf %t-MachO %t-ELF %t-COFF -// RUN: %clang_cc1 -triple=x86_64-apple-darwin -fmodules -fdisable-module-hash -fmodules-cache-path=%t-MachO -F %S/Inputs %s -// RUN: %clang_cc1 -triple=x86_64-linux-elf -fmodules -fdisable-module-hash -fmodules-cache-path=%t-ELF -F %S/Inputs %s -// RUN: %clang_cc1 -triple=x86_64-windows-coff -fmodules -fdisable-module-hash -fmodules-cache-path=%t-COFF -F %S/Inputs %s - -// RUN: llvm-objdump -section-headers %t-MachO/DependsOnModule.pcm %t-ELF/DependsOnModule.pcm %t-COFF/DependsOnModule.pcm | FileCheck %s -// CHECK: file format Mach-O 64-bit x86-64 -// CHECK: __clangast {{[0-9a-f]+}} {{[0-9a-f]+}} DATA -// CHECK: file format ELF64-x86-64 -// CHECK: __clangast {{[0-9a-f]+}} {{[0-9a-f]+}} DATA -// CHECK: file format COFF-x86-64 -// CHECK: clangast {{[0-9a-f]+}} {{[0-9a-f]+}} diff --git a/clang/test/PCH/floating-literal.c b/clang/test/PCH/floating-literal.c index b5ff6fe84b8..738e45a4151 100644 --- a/clang/test/PCH/floating-literal.c +++ b/clang/test/PCH/floating-literal.c @@ -1,5 +1,4 @@ // RUN: %clang_cc1 -triple mips64-none-linux-gnu -emit-pch -o %t %s -// REQUIRES: mips-registered-target // RUN: %clang_cc1 -x ast -ast-print %t | FileCheck %s // Make sure the semantics of FloatingLiterals are stored correctly in |