aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2013-01-25 04:33:40 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2013-01-25 04:33:40 +0000
commitdaa52066c9d748ff1f841115b22a040d17c3eb92 (patch)
treefb983e35537ac8ba35df337d01163de03289110e /test
parente93d6aec4dee01889ecdf6b8f2fdb14fd33cfa1d (diff)
Drop "REQUIRES:shell" in tests. They can run on win32.
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@173415 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/clang-format/diagnostic.cpp1
-rw-r--r--test/cpp11-migrate/Combined/combined.cpp1
-rw-r--r--test/cpp11-migrate/UseNullptr/basic.cpp1
-rw-r--r--test/cpp11-migrate/UseNullptr/basic_failing.cpp1
-rw-r--r--test/cpp11-migrate/no_xform.cpp1
-rw-r--r--test/remove-cstr-calls/basic.cpp1
6 files changed, 0 insertions, 6 deletions
diff --git a/test/clang-format/diagnostic.cpp b/test/clang-format/diagnostic.cpp
index 0a62c57a..2e930ee5 100644
--- a/test/clang-format/diagnostic.cpp
+++ b/test/clang-format/diagnostic.cpp
@@ -1,5 +1,4 @@
// RUN: clang-format 2>&1 >/dev/null %s |FileCheck %s
-// REQUIRES: shell
}
// CHECK: diagnostic.cpp:[[@LINE-1]]:1: error: unexpected '}'
diff --git a/test/cpp11-migrate/Combined/combined.cpp b/test/cpp11-migrate/Combined/combined.cpp
index 4267d2ed..48f3be8b 100644
--- a/test/cpp11-migrate/Combined/combined.cpp
+++ b/test/cpp11-migrate/Combined/combined.cpp
@@ -4,7 +4,6 @@
// RUN: FileCheck -input-file=%t.cpp %s
// RUN: cpp11-migrate -loop-convert -use-nullptr -risk=risky %t_risky.cpp --
// RUN: FileCheck -check-prefix=RISKY -input-file=%t_risky.cpp %s
-// REQUIRES: shell
// XFAIL: *
#define NULL 0
diff --git a/test/cpp11-migrate/UseNullptr/basic.cpp b/test/cpp11-migrate/UseNullptr/basic.cpp
index 8a6469c4..a0d93b13 100644
--- a/test/cpp11-migrate/UseNullptr/basic.cpp
+++ b/test/cpp11-migrate/UseNullptr/basic.cpp
@@ -3,7 +3,6 @@
// RUN: cpp11-migrate -use-nullptr %t.cpp -- -I %S
// RUN: FileCheck -input-file=%t.cpp %s
// RUN: FileCheck -input-file=%T/basic.h %S/Inputs/basic.h
-// REQUIRES: shell
#include "Inputs/basic.h"
diff --git a/test/cpp11-migrate/UseNullptr/basic_failing.cpp b/test/cpp11-migrate/UseNullptr/basic_failing.cpp
index e2a21f42..32663ffd 100644
--- a/test/cpp11-migrate/UseNullptr/basic_failing.cpp
+++ b/test/cpp11-migrate/UseNullptr/basic_failing.cpp
@@ -1,7 +1,6 @@
// RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp
// RUN: cpp11-migrate -use-nullptr %t.cpp -- -I %S
// RUN: FileCheck -input-file=%t.cpp %s
-// REQUIRES: shell
// XFAIL: *
#define NULL 0
diff --git a/test/cpp11-migrate/no_xform.cpp b/test/cpp11-migrate/no_xform.cpp
index 97a68762..3bbb22f0 100644
--- a/test/cpp11-migrate/no_xform.cpp
+++ b/test/cpp11-migrate/no_xform.cpp
@@ -1,7 +1,6 @@
// RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp
// RUN: cpp11-migrate %t.cpp --
// XFAIL: *
-// REQUIRES: shell
int main(int argc, char** argv) {
return 0;
diff --git a/test/remove-cstr-calls/basic.cpp b/test/remove-cstr-calls/basic.cpp
index 4aabf1ce..aede854e 100644
--- a/test/remove-cstr-calls/basic.cpp
+++ b/test/remove-cstr-calls/basic.cpp
@@ -1,7 +1,6 @@
// RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp
// RUN: remove-cstr-calls . %t.cpp --
// RUN: FileCheck -input-file=%t.cpp %s
-// REQUIRES: shell
namespace std {
template<typename T> class allocator {};