Skip to content

Commit 7d8252e

Browse files
ionut-armgowthamsk-arm
authored andcommitted
Fix test for 32bit arch
The value we use in the token info debug test overflows on 32bit architectures and makes the test fail. This fixes the issue by making the overflowing value < 2^32. Signed-off-by: Ionut Mihalcea <[email protected]>
1 parent 6b81342 commit 7d8252e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cryptoki/src/slot/token_info.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ SO_PIN_TO_BE_CHANGED | ERROR_STATE";
489489
rw_session_count: Some(1),
490490
max_pin_len: 16,
491491
min_pin_len: 4,
492-
total_public_memory: Some(32 << 30), // 32GiB
492+
total_public_memory: Some(1073741824), // 1GiB
493493
free_public_memory: Some(1234567890),
494494
total_private_memory: None, // unavailable
495495
free_private_memory: None, // unavailable
@@ -521,7 +521,7 @@ SO_PIN_TO_BE_CHANGED | ERROR_STATE";
521521
max_pin_len: 16,
522522
min_pin_len: 4,
523523
total_public_memory: Some(
524-
34359738368,
524+
1073741824,
525525
),
526526
free_public_memory: Some(
527527
1234567890,

0 commit comments

Comments
 (0)