diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-06-10 15:41:16 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-06-16 11:54:15 +0200 |
| commit | 9b09948897886541bc4f31a9d07bf4a2e1680171 (patch) | |
| tree | cdc7d215648318f4ce8c1dad98aecae47ae7ff25 | |
| parent | aec32486a8d018b398fc9499898d6ab7dbe93741 (diff) | |
| download | rust-9b09948897886541bc4f31a9d07bf4a2e1680171.tar.gz rust-9b09948897886541bc4f31a9d07bf4a2e1680171.zip | |
Extend num tests on `usize` and `isize` as well
| -rw-r--r-- | library/alloctests/tests/num.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/library/alloctests/tests/num.rs b/library/alloctests/tests/num.rs index 3c76e68c606..a169bbec8e0 100644 --- a/library/alloctests/tests/num.rs +++ b/library/alloctests/tests/num.rs @@ -52,6 +52,8 @@ int_to_s!( i32, test_i64_to_string, i64, + test_isize_to_string, + isize, test_i128_to_string, i128, ); @@ -64,6 +66,8 @@ uint_to_s!( u32, test_u64_to_string, u64, + test_usize_to_string, + usize, test_u128_to_string, u128, ); |
