@@ -201,7 +201,7 @@ C2H_TEST("cub::DeviceSegmentedSort::SortPairs nonstable env-based API", "[segmen
201201 stream_ref);
202202 if (error != cudaSuccess)
203203 {
204- std::cerr << " cub::DeviceSegmentedSort::SortPairs failed with status: " << error << std::endl ;
204+ std::cerr << " cub::DeviceSegmentedSort::SortPairs failed with status: " << error << ' \n ' ;
205205 }
206206
207207 thrust::device_vector<int > expected_keys{6 , 7 , 8 , 0 , 3 , 5 , 9 };
@@ -239,7 +239,7 @@ C2H_TEST("cub::DeviceSegmentedSort::SortPairsDescending nonstable env-based API"
239239 stream_ref);
240240 if (error != cudaSuccess)
241241 {
242- std::cerr << " cub::DeviceSegmentedSort::SortPairsDescending failed with status: " << error << std::endl ;
242+ std::cerr << " cub::DeviceSegmentedSort::SortPairsDescending failed with status: " << error << ' \n ' ;
243243 }
244244
245245 thrust::device_vector<int > expected_keys{8 , 7 , 6 , 9 , 5 , 3 , 0 };
@@ -279,7 +279,7 @@ C2H_TEST("cub::DeviceSegmentedSort::SortPairs nonstable DoubleBuffer env-based A
279279 stream_ref);
280280 if (error != cudaSuccess)
281281 {
282- std::cerr << " cub::DeviceSegmentedSort::SortPairs (DoubleBuffer) failed with status: " << error << std::endl ;
282+ std::cerr << " cub::DeviceSegmentedSort::SortPairs (DoubleBuffer) failed with status: " << error << ' \n ' ;
283283 }
284284
285285 thrust::device_vector<int > expected_keys{6 , 7 , 8 , 0 , 3 , 5 , 9 };
@@ -322,8 +322,7 @@ C2H_TEST("cub::DeviceSegmentedSort::SortPairsDescending nonstable DoubleBuffer e
322322 stream_ref);
323323 if (error != cudaSuccess)
324324 {
325- std::cerr
326- << " cub::DeviceSegmentedSort::SortPairsDescending (DoubleBuffer) failed with status: " << error << std::endl;
325+ std::cerr << " cub::DeviceSegmentedSort::SortPairsDescending (DoubleBuffer) failed with status: " << error << ' \n ' ;
327326 }
328327
329328 thrust::device_vector<int > expected_keys{8 , 7 , 6 , 9 , 5 , 3 , 0 };
0 commit comments