Skip to content

Commit 2c08c73

Browse files
test/parallel_api/ranges/std_ranges_set_union.pass.cpp - test with limited sizes
1 parent 8b88844 commit 2c08c73

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/parallel_api/ranges/std_ranges_set_union.pass.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,14 +107,14 @@ main()
107107
return ret_type{res.in1, res.in2, res.out};
108108
};
109109

110-
test_range_algo<0, int, data_in_in_out, mul1_t, div3_t>{big_sz}(dpl_ranges::set_union, set_union_checker);
111-
test_range_algo<1, int, data_in_in_out, mul1_t, div3_t>{big_sz}(dpl_ranges::set_union, set_union_checker, std::ranges::less{}, proj);
110+
test_range_algo<0, int, data_in_in_out_lim, mul1_t, div3_t>{big_sz}(dpl_ranges::set_union, set_union_checker);
111+
test_range_algo<1, int, data_in_in_out_lim, mul1_t, div3_t>{big_sz}(dpl_ranges::set_union, set_union_checker, std::ranges::less{}, proj);
112112

113113
// Testing the cut-off with the serial implementation (less than __set_algo_cut_off)
114-
test_range_algo<2, int, data_in_in_out, mul1_t, div3_t>{100}(dpl_ranges::set_union, set_union_checker, std::ranges::less{}, proj, proj);
114+
test_range_algo<2, int, data_in_in_out_lim, mul1_t, div3_t>{100}(dpl_ranges::set_union, set_union_checker, std::ranges::less{}, proj, proj);
115115

116-
test_range_algo<3, P2, data_in_in_out, mul1_t, div3_t>{}(dpl_ranges::set_union, set_union_checker, std::ranges::less{}, &P2::x, &P2::x);
117-
test_range_algo<4, P2, data_in_in_out, mul1_t, div3_t>{}(dpl_ranges::set_union, set_union_checker, std::ranges::less{}, &P2::proj, &P2::proj);
116+
test_range_algo<3, P2, data_in_in_out_lim, mul1_t, div3_t>{}(dpl_ranges::set_union, set_union_checker, std::ranges::less{}, &P2::x, &P2::x);
117+
test_range_algo<4, P2, data_in_in_out_lim, mul1_t, div3_t>{}(dpl_ranges::set_union, set_union_checker, std::ranges::less{}, &P2::proj, &P2::proj);
118118

119119
test_mixed_types_host();
120120
#if TEST_DPCPP_BACKEND_PRESENT

0 commit comments

Comments
 (0)