Skip to content

Commit 7c4a097

Browse files
committed
Disable corner case testing
1 parent dc80f19 commit 7c4a097

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/parallel_api/ranges/std_ranges_test.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -460,15 +460,16 @@ struct test
460460
//test case size of input range is less than size of output and vice-versa
461461
process_data_in_out(max_n, r_size/2, r_size, CLONE_TEST_POLICY(exec), algo, checker, args...);
462462
process_data_in_out(max_n, r_size, r_size/2, CLONE_TEST_POLICY(exec), algo, checker, args...);
463-
463+
/*
464464
//test cases with empty sequence(s)
465465
process_data_in_out(max_n, 0, 0, CLONE_TEST_POLICY(exec), algo, checker, args...);
466466
process_data_in_out(max_n, r_size, 0, CLONE_TEST_POLICY(exec), algo, checker, args...);
467467
process_data_in_out(max_n, 0, r_size, CLONE_TEST_POLICY(exec), algo, checker, args...);
468-
468+
*/
469469
//test cases with only one element
470470
process_data_in_out(max_n, r_size, 1, CLONE_TEST_POLICY(exec), algo, checker, args...);
471471
process_data_in_out(max_n, 1, r_size, CLONE_TEST_POLICY(exec), algo, checker, args...);
472+
472473
}
473474

474475
template<typename Policy, typename Algo, typename Checker, typename TransIn, typename TransOut, TestDataMode mode = test_mode>

0 commit comments

Comments
 (0)