Move test into test/std subdirectory.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@224658 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier
2014-12-20 01:40:03 +00:00
parent 669a8a5a19
commit a90c6dd460
4817 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator&(const valarray<T>& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {1, 2, 3, 4, 5};
T a2[] = {6, 7, 8, 9, 10};
T a3[] = {0, 2, 0, 0, 0};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2(a2, N);
std::valarray<T> v3 = v1 & v2;
assert(v1.size() == v2.size());
assert(v1.size() == v3.size());
for (int i = 0; i < v1.size(); ++i)
assert(v3[i] == a3[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator&(const valarray<T>& x, const T& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = { 1, 2, 3, 4, 5};
T a2[] = { 1, 2, 3, 0, 1};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = v1 & 3;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator&(const T& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = { 1, 2, 3, 4, 5};
T a2[] = { 1, 2, 3, 0, 1};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = 3 & v1;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,35 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator/(const valarray<T>& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {6, 14, 24, 36, 50};
T a2[] = {6, 7, 8, 9, 10};
T a3[] = {1, 2, 3, 4, 5};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2(a2, N);
std::valarray<T> v3 = v1 / v2;
assert(v1.size() == v2.size());
assert(v1.size() == v3.size());
for (int i = 0; i < v1.size(); ++i)
assert(v3[i] == a3[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator/(const valarray<T>& x, const T& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {6, 12, 18, 24, 30};
T a2[] = {1, 2, 3, 4, 5};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = v1 / 6;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator/(const T& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {1, 2, 3, 4, 5};
T a2[] = {3, 1, 1, 0, 0};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = 3 / v1;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,35 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator-(const valarray<T>& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {7, 9, 11, 13, 15};
T a2[] = {6, 7, 8, 9, 10};
T a3[] = {1, 2, 3, 4, 5};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2(a2, N);
std::valarray<T> v3 = v1 - v2;
assert(v1.size() == v2.size());
assert(v1.size() == v3.size());
for (int i = 0; i < v1.size(); ++i)
assert(v3[i] == a3[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator-(const valarray<T>& x, const T& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = { 1, 2, 3, 4, 5};
T a2[] = {-2, -1, 0, 1, 2};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = v1 - 3;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator-(const T& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = { 1, 2, 3, 4, 5};
T a2[] = { 2, 1, 0, -1, -2};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = 3 - v1;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,35 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator%(const valarray<T>& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {6, 7, 8, 9, 10};
T a2[] = {1, 2, 3, 4, 5};
T a3[] = {0, 1, 2, 1, 0};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2(a2, N);
std::valarray<T> v3 = v1 % v2;
assert(v1.size() == v2.size());
assert(v1.size() == v3.size());
for (int i = 0; i < v1.size(); ++i)
assert(v3[i] == a3[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator%(const valarray<T>& x, const T& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {1, 2, 3, 4, 5};
T a2[] = {1, 2, 0, 1, 2};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = v1 % 3;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator%(const T& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {1, 2, 3, 4, 5};
T a2[] = {0, 1, 0, 3, 3};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = 3 % v1;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,35 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator|(const valarray<T>& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {1, 2, 3, 4, 5};
T a2[] = {6, 7, 8, 9, 10};
T a3[] = {7, 7, 11, 13, 15};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2(a2, N);
std::valarray<T> v3 = v1 | v2;
assert(v1.size() == v2.size());
assert(v1.size() == v3.size());
for (int i = 0; i < v1.size(); ++i)
assert(v3[i] == a3[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator|(const valarray<T>& x, const T& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = { 1, 2, 3, 4, 5};
T a2[] = { 3, 3, 3, 7, 7};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = v1 | 3;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator|(const T& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = { 1, 2, 3, 4, 5};
T a2[] = { 3, 3, 3, 7, 7};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = 3 | v1;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,35 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator+(const valarray<T>& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {1, 2, 3, 4, 5};
T a2[] = {6, 7, 8, 9, 10};
T a3[] = {7, 9, 11, 13, 15};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2(a2, N);
std::valarray<T> v3 = v1 + v2;
assert(v1.size() == v2.size());
assert(v1.size() == v3.size());
for (int i = 0; i < v1.size(); ++i)
assert(v3[i] == a3[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator+(const valarray<T>& x, const T& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {1, 2, 3, 4, 5};
T a2[] = {4, 5, 6, 7, 8};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = v1 + 3;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator+(const T& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {1, 2, 3, 4, 5};
T a2[] = {4, 5, 6, 7, 8};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = 3 + v1;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,35 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator<<(const valarray<T>& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = { 1, 2, 3, 4, 5};
T a2[] = { 6, 7, 8, 9, 10};
T a3[] = {64, 256, 768, 2048, 5120};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2(a2, N);
std::valarray<T> v3 = v1 << v2;
assert(v1.size() == v2.size());
assert(v1.size() == v3.size());
for (int i = 0; i < v1.size(); ++i)
assert(v3[i] == a3[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator<<(const valarray<T>& x, const T& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = { 1, 2, 3, 4, 5};
T a2[] = { 8, 16, 24, 32, 40};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = v1 << 3;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator<<(const T& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = { 1, 2, 3, 4, 5};
T a2[] = { 6, 12, 24, 48, 96};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = 3 << v1;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,35 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator>>(const valarray<T>& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {64, 256, 768, 2048, 5120};
T a2[] = { 6, 7, 8, 9, 10};
T a3[] = { 1, 2, 3, 4, 5};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2(a2, N);
std::valarray<T> v3 = v1 >> v2;
assert(v1.size() == v2.size());
assert(v1.size() == v3.size());
for (int i = 0; i < v1.size(); ++i)
assert(v3[i] == a3[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator>>(const valarray<T>& x, const T& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = { 8, 16, 24, 32, 40};
T a2[] = { 1, 2, 3, 4, 5};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = v1 >> 3;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator>>(const T& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = { 1, 2, 3, 4, 5};
T a2[] = {20, 10, 5, 2, 1};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = 40 >> v1;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,35 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator*(const valarray<T>& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {1, 2, 3, 4, 5};
T a2[] = {6, 7, 8, 9, 10};
T a3[] = {6, 14, 24, 36, 50};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2(a2, N);
std::valarray<T> v3 = v1 * v2;
assert(v1.size() == v2.size());
assert(v1.size() == v3.size());
for (int i = 0; i < v1.size(); ++i)
assert(v3[i] == a3[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator+(const valarray<T>& x, const T& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {1, 2, 3, 4, 5};
T a2[] = {6, 12, 18, 24, 30};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = v1 * 6;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator*(const T& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {1, 2, 3, 4, 5};
T a2[] = {6, 12, 18, 24, 30};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = 6 * v1;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,35 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator^(const valarray<T>& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = {1, 2, 3, 4, 5};
T a2[] = {6, 7, 8, 9, 10};
T a3[] = {7, 5, 11, 13, 15};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2(a2, N);
std::valarray<T> v3 = v1 ^ v2;
assert(v1.size() == v2.size());
assert(v1.size() == v3.size());
for (int i = 0; i < v1.size(); ++i)
assert(v3[i] == a3[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator^(const valarray<T>& x, const T& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = { 1, 2, 3, 4, 5};
T a2[] = { 2, 1, 0, 7, 6};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = v1 ^ 3;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}

View File

@@ -0,0 +1,32 @@
//===----------------------------------------------------------------------===//
//
// 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>
// template<class T> class valarray;
// template<class T> valarray<T> operator^(const T& x, const valarray<T>& y);
#include <valarray>
#include <cassert>
int main()
{
{
typedef int T;
T a1[] = { 1, 2, 3, 4, 5};
T a2[] = { 2, 1, 0, 7, 6};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2 = 3 ^ v1;
assert(v1.size() == v2.size());
for (int i = 0; i < v2.size(); ++i)
assert(v2[i] == a2[i]);
}
}