aboutsummaryrefslogtreecommitdiff
path: root/tests/test.rs
diff options
context:
space:
mode:
authorJeff Vander Stoep <jeffv@google.com>2024-02-01 19:50:18 +0100
committerJeff Vander Stoep <jeffv@google.com>2024-02-01 19:50:18 +0100
commit7a32db877fba05ba6cc9651335c7c8d48a114b04 (patch)
treeac3d3be89ecdf22430217ad0de9783cf725dbd6d /tests/test.rs
parent841462450deefe12a5e1a5db61aa618d697d9d72 (diff)
downloaditoa-7a32db877fba05ba6cc9651335c7c8d48a114b04.tar.gz
Upgrade itoa to 1.0.10emu-34-3-release
This project was upgraded with external_updater. Usage: tools/external_updater/updater.sh update external/rust/crates/itoa For more info, check https://cs.android.com/android/platform/superproject/+/main:tools/external_updater/README.md Test: TreeHugger Change-Id: Ifbfdeaff58d84ca5bd6006782ef383d881966856
Diffstat (limited to 'tests/test.rs')
-rw-r--r--tests/test.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test.rs b/tests/test.rs
index 1d7e8cb..f8275d6 100644
--- a/tests/test.rs
+++ b/tests/test.rs
@@ -26,4 +26,5 @@ test! {
test_u128_0(0u128, "0")
test_u128_max(u128::max_value(), "340282366920938463463374607431768211455")
test_i128_min(i128::min_value(), "-170141183460469231731687303715884105728")
+ test_i128_max(i128::max_value(), "170141183460469231731687303715884105727")
}