Skip to content

Commit

Permalink
Restore LDL/STL call ABI checks that were commented out earlier.
Browse files Browse the repository at this point in the history
Co-authored-by: Georgii Evtushenko <[email protected]>
  • Loading branch information
wmaxey and gevtushenko authored Oct 8, 2024
1 parent ed5dfca commit 9dc3ab0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c/test/test_for.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ void for_each(cccl_iterator_t input, unsigned long long num_items, cccl_op_t op)
CUDA_SUCCESS
== cccl_device_for_build(&build, input, op, cc_major, cc_minor, cub_path, thrust_path, libcudacxx_path, ctk_path));
const std::string sass = inspect_sass(build.cubin, build.cubin_size);
// REQUIRE(sass.find("LDL") == std::string::npos);
// REQUIRE(sass.find("STL") == std::string::npos);
REQUIRE(sass.find("LDL") == std::string::npos);
REQUIRE(sass.find("STL") == std::string::npos);

REQUIRE(CUDA_SUCCESS == cccl_device_for(build, input, num_items, op, 0));
REQUIRE(CUDA_SUCCESS == cccl_device_for_cleanup(&build));
Expand Down

0 comments on commit 9dc3ab0

Please sign in to comment.