mirror of
https://github.com/boostorg/array.git
synced 2025-07-30 04:37:21 +02:00
Enable failing tests
This commit is contained in:
@ -44,11 +44,11 @@ template<class T> void test4()
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
// test1<int, 0>();
|
test1<int, 0>();
|
||||||
test1<int, 1>();
|
test1<int, 1>();
|
||||||
test1<int, 7>();
|
test1<int, 7>();
|
||||||
|
|
||||||
// test1<int const, 0>();
|
test1<int const, 0>();
|
||||||
test1<int const, 1>();
|
test1<int const, 1>();
|
||||||
test1<int const, 7>();
|
test1<int const, 7>();
|
||||||
|
|
||||||
|
@ -46,11 +46,11 @@ template<class T> void test4()
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
// test1<int, 0>();
|
test1<int, 0>();
|
||||||
test1<int, 1>();
|
test1<int, 1>();
|
||||||
test1<int, 7>();
|
test1<int, 7>();
|
||||||
|
|
||||||
// test1<int const, 0>();
|
test1<int const, 0>();
|
||||||
test1<int const, 1>();
|
test1<int const, 1>();
|
||||||
test1<int const, 7>();
|
test1<int const, 7>();
|
||||||
|
|
||||||
|
@ -56,7 +56,8 @@ template<class T> void test4()
|
|||||||
|
|
||||||
template<class T> void test5()
|
template<class T> void test5()
|
||||||
{
|
{
|
||||||
// constexpr boost::array<T, 0> a = {{}};
|
constexpr boost::array<T, 0> a = {{}};
|
||||||
|
(void)a;
|
||||||
}
|
}
|
||||||
|
|
||||||
template<class T> void test6()
|
template<class T> void test6()
|
||||||
|
@ -94,11 +94,11 @@ template<class T> void test2()
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
// test<int, 0>();
|
test<int, 0>();
|
||||||
test<int, 1>();
|
test<int, 1>();
|
||||||
test<int, 7>();
|
test<int, 7>();
|
||||||
|
|
||||||
// test<int const, 0>();
|
test<int const, 0>();
|
||||||
test<int const, 1>();
|
test<int const, 1>();
|
||||||
test<int const, 7>();
|
test<int const, 7>();
|
||||||
|
|
||||||
|
@ -76,11 +76,11 @@ template<class T, std::size_t N> void test()
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
// test<int, 0>();
|
test<int, 0>();
|
||||||
test<int, 1>();
|
test<int, 1>();
|
||||||
test<int, 7>();
|
test<int, 7>();
|
||||||
|
|
||||||
// test<int const, 0>();
|
test<int const, 0>();
|
||||||
test<int const, 1>();
|
test<int const, 1>();
|
||||||
test<int const, 7>();
|
test<int const, 7>();
|
||||||
|
|
||||||
|
@ -49,11 +49,11 @@ template<class T, std::size_t N> void test3()
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
// test1<int, 0>();
|
test1<int, 0>();
|
||||||
test1<int, 1>();
|
test1<int, 1>();
|
||||||
test1<int, 7>();
|
test1<int, 7>();
|
||||||
|
|
||||||
// test1<int const, 0>();
|
test1<int const, 0>();
|
||||||
test1<int const, 1>();
|
test1<int const, 1>();
|
||||||
test1<int const, 7>();
|
test1<int const, 7>();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user