Skip to content

Commit

Permalink
Enable failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Jan 26, 2025
1 parent 567ba40 commit f017dac
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions test/array_copy_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ template<class T> void test4()

int main()
{
// test1<int, 0>();
test1<int, 0>();
test1<int, 1>();
test1<int, 7>();

// test1<int const, 0>();
test1<int const, 0>();
test1<int const, 1>();
test1<int const, 7>();

Expand Down
4 changes: 2 additions & 2 deletions test/array_init_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ template<class T> void test4()

int main()
{
// test1<int, 0>();
test1<int, 0>();
test1<int, 1>();
test1<int, 7>();

// test1<int const, 0>();
test1<int const, 0>();
test1<int const, 1>();
test1<int const, 7>();

Expand Down
3 changes: 2 additions & 1 deletion test/array_init_test_cx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ template<class T> void test4()

template<class T> void test5()
{
// constexpr boost::array<T, 0> a = {{}};
constexpr boost::array<T, 0> a = {{}};
(void)a;
}

template<class T> void test6()
Expand Down
4 changes: 2 additions & 2 deletions test/array_iterator_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ template<class T> void test2()

int main()
{
// test<int, 0>();
test<int, 0>();
test<int, 1>();
test<int, 7>();

// test<int const, 0>();
test<int const, 0>();
test<int const, 1>();
test<int const, 7>();

Expand Down
4 changes: 2 additions & 2 deletions test/array_reverse_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ template<class T, std::size_t N> void test()

int main()
{
// test<int, 0>();
test<int, 0>();
test<int, 1>();
test<int, 7>();

// test<int const, 0>();
test<int const, 0>();
test<int const, 1>();
test<int const, 7>();

Expand Down
4 changes: 2 additions & 2 deletions test/array_size_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ template<class T, std::size_t N> void test3()

int main()
{
// test1<int, 0>();
test1<int, 0>();
test1<int, 1>();
test1<int, 7>();

// test1<int const, 0>();
test1<int const, 0>();
test1<int const, 1>();
test1<int const, 7>();

Expand Down

0 comments on commit f017dac

Please sign in to comment.