summaryrefslogtreecommitdiffstats
path: root/libcxx/test/numerics/numarray/class.slice
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/numerics/numarray/class.slice')
-rw-r--r--libcxx/test/numerics/numarray/class.slice/cons.slice/default.pass.cpp25
-rw-r--r--libcxx/test/numerics/numarray/class.slice/cons.slice/start_size_stride.pass.cpp25
-rw-r--r--libcxx/test/numerics/numarray/class.slice/nothing_to_do.pass.cpp12
-rw-r--r--libcxx/test/numerics/numarray/class.slice/slice.access/tested_elsewhere.pass.cpp12
4 files changed, 0 insertions, 74 deletions
diff --git a/libcxx/test/numerics/numarray/class.slice/cons.slice/default.pass.cpp b/libcxx/test/numerics/numarray/class.slice/cons.slice/default.pass.cpp
deleted file mode 100644
index d0a6cc0d28d..00000000000
--- a/libcxx/test/numerics/numarray/class.slice/cons.slice/default.pass.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-// <valarray>
-
-// class slice;
-
-// slice();
-
-#include <valarray>
-#include <cassert>
-
-int main()
-{
- std::slice s;
- assert(s.start() == 0);
- assert(s.size() == 0);
- assert(s.stride() == 0);
-}
diff --git a/libcxx/test/numerics/numarray/class.slice/cons.slice/start_size_stride.pass.cpp b/libcxx/test/numerics/numarray/class.slice/cons.slice/start_size_stride.pass.cpp
deleted file mode 100644
index 84f7ed6a18e..00000000000
--- a/libcxx/test/numerics/numarray/class.slice/cons.slice/start_size_stride.pass.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-// <valarray>
-
-// class slice;
-
-// slice(size_t start, size_t size, size_t stride);
-
-#include <valarray>
-#include <cassert>
-
-int main()
-{
- std::slice s(1, 3, 2);
- assert(s.start() == 1);
- assert(s.size() == 3);
- assert(s.stride() == 2);
-}
diff --git a/libcxx/test/numerics/numarray/class.slice/nothing_to_do.pass.cpp b/libcxx/test/numerics/numarray/class.slice/nothing_to_do.pass.cpp
deleted file mode 100644
index b58f5c55b64..00000000000
--- a/libcxx/test/numerics/numarray/class.slice/nothing_to_do.pass.cpp
+++ /dev/null
@@ -1,12 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-int main()
-{
-}
diff --git a/libcxx/test/numerics/numarray/class.slice/slice.access/tested_elsewhere.pass.cpp b/libcxx/test/numerics/numarray/class.slice/slice.access/tested_elsewhere.pass.cpp
deleted file mode 100644
index b58f5c55b64..00000000000
--- a/libcxx/test/numerics/numarray/class.slice/slice.access/tested_elsewhere.pass.cpp
+++ /dev/null
@@ -1,12 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-int main()
-{
-}
OpenPOWER on IntegriCloud