Skip to content

Commit

Permalink
[libc++][z/OS] Fixup two linear_congruential_engine tests (llvm#92261)
Browse files Browse the repository at this point in the history
  • Loading branch information
zibi2 authored May 16, 2024
1 parent 2bc9af9 commit 588ce34
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,10 @@ int main(int, char**)
test<unsigned int>();
test_ext<unsigned int>();
test<unsigned long>();
// This isn't implemented on platforms without __int128
#ifndef _LIBCPP_HAS_NO_INT128
test_ext<unsigned long>();
#endif
test<unsigned long long>();
// This isn't implemented on platforms without __int128
#ifndef _LIBCPP_HAS_NO_INT128
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,10 @@ int main(int, char**)
test<unsigned int>();
test_ext<unsigned int>();
test<unsigned long>();
// This isn't implemented on platforms without __int128
#ifndef _LIBCPP_HAS_NO_INT128
test_ext<unsigned long>();
#endif
test<unsigned long long>();
// This isn't implemented on platforms without __int128
#ifndef _LIBCPP_HAS_NO_INT128
Expand Down

0 comments on commit 588ce34

Please sign in to comment.