diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-11-04 13:41:33 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-11-04 13:41:33 +0000 |
commit | 06ac98299f49a156f12e178c4a621f90dd8a6e24 (patch) | |
tree | 282bb9c4a842eeb8a368c62f50ff814e1a4eabdb | |
parent | d2bfd00e7167e78dfdcfd13d1a645e2ad89b6b8a (diff) | |
download | bcm5719-llvm-06ac98299f49a156f12e178c4a621f90dd8a6e24.tar.gz bcm5719-llvm-06ac98299f49a156f12e178c4a621f90dd8a6e24.zip |
Remove "REQUIRES:shell" from tests. They work for me.
llvm-svn: 221269
-rw-r--r-- | clang/test/CodeGen/sanitize-address-field-padding.cpp | 1 | ||||
-rw-r--r-- | clang/test/CodeGen/ubsan-type-blacklist.cpp | 2 | ||||
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-namespace.cpp | 2 | ||||
-rw-r--r-- | clang/test/Driver/modules.m | 1 | ||||
-rw-r--r-- | clang/test/Tooling/pch.cpp | 1 | ||||
-rw-r--r-- | llvm/test/CodeGen/X86/nonconst-static-ev.ll | 1 | ||||
-rw-r--r-- | llvm/test/CodeGen/X86/nonconst-static-iv.ll | 1 | ||||
-rw-r--r-- | llvm/test/DebugInfo/llvm-symbolizer.test | 2 | ||||
-rw-r--r-- | llvm/test/Object/archive-error-tmp.txt | 2 | ||||
-rw-r--r-- | llvm/test/Transforms/GCOVProfiling/global-ctor.ll | 2 | ||||
-rw-r--r-- | llvm/test/Transforms/GCOVProfiling/linkagename.ll | 2 | ||||
-rw-r--r-- | llvm/test/Transforms/GCOVProfiling/version.ll | 2 |
12 files changed, 0 insertions, 19 deletions
diff --git a/clang/test/CodeGen/sanitize-address-field-padding.cpp b/clang/test/CodeGen/sanitize-address-field-padding.cpp index 0d09a133d43..9066a5efb0b 100644 --- a/clang/test/CodeGen/sanitize-address-field-padding.cpp +++ b/clang/test/CodeGen/sanitize-address-field-padding.cpp @@ -5,7 +5,6 @@ // RUN: %clang_cc1 -triple x86_64-unknown-unknown -fsanitize=address -fsanitize-address-field-padding=1 -fsanitize-blacklist=%t.type.blacklist -Rsanitize-address -emit-llvm -o - %s -O1 -mconstructor-aliases 2>&1 | FileCheck %s --check-prefix=WITH_CTOR_ALIASES // RUN: %clang_cc1 -triple x86_64-unknown-unknown -fsanitize=address -fsanitize-address-field-padding=1 -fsanitize-blacklist=%t.file.blacklist -Rsanitize-address -emit-llvm -o - %s 2>&1 | FileCheck %s --check-prefix=FILE_BLACKLIST // RUN: %clang_cc1 -fsanitize=address -emit-llvm -o - %s 2>&1 | FileCheck %s --check-prefix=NO_PADDING -// REQUIRES: shell // // The reasons to ignore a particular class are not set in stone and will change. diff --git a/clang/test/CodeGen/ubsan-type-blacklist.cpp b/clang/test/CodeGen/ubsan-type-blacklist.cpp index 7dc6fe159b5..e2bbb6a803a 100644 --- a/clang/test/CodeGen/ubsan-type-blacklist.cpp +++ b/clang/test/CodeGen/ubsan-type-blacklist.cpp @@ -3,8 +3,6 @@ // RUN: %clang_cc1 -triple x86_64-linux-gnu -fsanitize=vptr -emit-llvm %s -o - | FileCheck %s --check-prefix=DEFAULT // RUN: %clang_cc1 -triple x86_64-linux-gnu -fsanitize=vptr -fsanitize-blacklist=%t-type.blacklist -emit-llvm %s -o - | FileCheck %s --check-prefix=TYPE -// REQUIRES: shell - class Bar { public: virtual ~Bar() {} diff --git a/clang/test/CodeGenCXX/debug-info-namespace.cpp b/clang/test/CodeGenCXX/debug-info-namespace.cpp index ab98f56b1b2..1512e9d79cc 100644 --- a/clang/test/CodeGenCXX/debug-info-namespace.cpp +++ b/clang/test/CodeGenCXX/debug-info-namespace.cpp @@ -77,7 +77,5 @@ using B::i; // CHECK-NOLIMIT: ; [ DW_TAG_structure_type ] [bar] [line 6, {{.*}}] [def] [from ] -// FIXME: It is confused on win32 to generate file entry when dosish filename is given. -// REQUIRES: shell // REQUIRES: shell-preserves-root // REQUIRES: dw2 diff --git a/clang/test/Driver/modules.m b/clang/test/Driver/modules.m index ba462b8300b..8a0c8ba4d88 100644 --- a/clang/test/Driver/modules.m +++ b/clang/test/Driver/modules.m @@ -7,7 +7,6 @@ // RUN: %clang -fbuild-session-file=doesntexist -### %s 2>&1 | FileCheck -check-prefix=NOFILE %s // NOFILE: no such file or directory: 'doesntexist' -// REQUIRES: shell // RUN: touch -m -a -t 201008011501 %t.build-session-file // RUN: %clang -fbuild-session-file=%t.build-session-file -### %s 2>&1 | FileCheck -check-prefix=TIMESTAMP_ONLY %s diff --git a/clang/test/Tooling/pch.cpp b/clang/test/Tooling/pch.cpp index 40bc1e9731c..5da49eaea9c 100644 --- a/clang/test/Tooling/pch.cpp +++ b/clang/test/Tooling/pch.cpp @@ -9,7 +9,6 @@ // the test file with an unrelated include as second translation unit. // Test for an non-empty file after clang-check is executed. // RUN: clang-check -ast-dump "%S/Inputs/pch.cpp" "%s" -- -include-pch %t1 -I "%S" -c >%t2 2>&1 -// REQUIRES: shell // RUN: test -s %t2 #include "Inputs/pch-fail.h" diff --git a/llvm/test/CodeGen/X86/nonconst-static-ev.ll b/llvm/test/CodeGen/X86/nonconst-static-ev.ll index f852caeeea2..5449791f3fa 100644 --- a/llvm/test/CodeGen/X86/nonconst-static-ev.ll +++ b/llvm/test/CodeGen/X86/nonconst-static-ev.ll @@ -1,6 +1,5 @@ ; RUN: not llc -march=x86 -mtriple=x86_64-linux-gnu < %s 2> %t ; RUN: FileCheck --check-prefix=CHECK-ERRORS < %t %s -; REQUIRES: shell @0 = global i8 extractvalue ([1 x i8] select (i1 ptrtoint (i32* @1 to i1), [1 x i8] [ i8 1 ], [1 x i8] [ i8 2 ]), 0) @1 = external global i32 diff --git a/llvm/test/CodeGen/X86/nonconst-static-iv.ll b/llvm/test/CodeGen/X86/nonconst-static-iv.ll index 8fad39bcbf7..30613ef383a 100644 --- a/llvm/test/CodeGen/X86/nonconst-static-iv.ll +++ b/llvm/test/CodeGen/X86/nonconst-static-iv.ll @@ -1,6 +1,5 @@ ; RUN: not llc -march=x86 -mtriple=x86_64-linux-gnu < %s 2> %t ; RUN: FileCheck --check-prefix=CHECK-ERRORS < %t %s -; REQUIRES: shell @0 = global i8 insertvalue( { i8 } select (i1 ptrtoint (i32* @1 to i1), { i8 } { i8 1 }, { i8 } { i8 2 }), i8 0, 0) @1 = external global i32 diff --git a/llvm/test/DebugInfo/llvm-symbolizer.test b/llvm/test/DebugInfo/llvm-symbolizer.test index 4a62de8e0ff..8a2aaaab3a3 100644 --- a/llvm/test/DebugInfo/llvm-symbolizer.test +++ b/llvm/test/DebugInfo/llvm-symbolizer.test @@ -27,8 +27,6 @@ RUN: echo "%p/Inputs/cross-cu-inlining.x86_64-macho.o 0x17" >> %t.input RUN: llvm-symbolizer --functions=linkage --inlining --demangle=false \ RUN: --default-arch=i386 < %t.input | FileCheck %s -REQUIRES: shell - CHECK: main CHECK-NEXT: /tmp/dbginfo{{[/\\]}}dwarfdump-test.cc:16 diff --git a/llvm/test/Object/archive-error-tmp.txt b/llvm/test/Object/archive-error-tmp.txt index 061898655b6..ed3b14559ac 100644 --- a/llvm/test/Object/archive-error-tmp.txt +++ b/llvm/test/Object/archive-error-tmp.txt @@ -1,5 +1,3 @@ -REQUIRES: shell - Test that no temporary file is left behind on error. RUN: rm -rf %t diff --git a/llvm/test/Transforms/GCOVProfiling/global-ctor.ll b/llvm/test/Transforms/GCOVProfiling/global-ctor.ll index 9ca7561d8e4..998fd912457 100644 --- a/llvm/test/Transforms/GCOVProfiling/global-ctor.ll +++ b/llvm/test/Transforms/GCOVProfiling/global-ctor.ll @@ -4,8 +4,6 @@ ; RUN: not grep '_GLOBAL__sub_I_global-ctor' %T/global-ctor.gcno ; RUN: rm %T/global-ctor.gcno -; REQUIRES: shell - @x = global i32 0, align 4 @llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_global-ctor.ll, i8* null }] diff --git a/llvm/test/Transforms/GCOVProfiling/linkagename.ll b/llvm/test/Transforms/GCOVProfiling/linkagename.ll index b5ee1ac2552..b22f65b14eb 100644 --- a/llvm/test/Transforms/GCOVProfiling/linkagename.ll +++ b/llvm/test/Transforms/GCOVProfiling/linkagename.ll @@ -4,8 +4,6 @@ ; RUN: grep _Z3foov %T/linkagename.gcno ; RUN: rm %T/linkagename.gcno -; REQUIRES: shell - define void @_Z3foov() { entry: ret void, !dbg !8 diff --git a/llvm/test/Transforms/GCOVProfiling/version.ll b/llvm/test/Transforms/GCOVProfiling/version.ll index 3307bdf7de4..acc34b4d397 100644 --- a/llvm/test/Transforms/GCOVProfiling/version.ll +++ b/llvm/test/Transforms/GCOVProfiling/version.ll @@ -12,8 +12,6 @@ define void @test() { ret void, !dbg !8 } -; REQUIRES: shell - !llvm.gcov = !{!9} !llvm.dbg.cu = !{!0} !llvm.module.flags = !{!12} |