From c6758a697c135baff7cf5754b4d1b7a30300dbcd Mon Sep 17 00:00:00 2001 From: Dmitri Makarov Date: Sat, 13 Nov 2021 07:16:11 -0800 Subject: [PATCH] Increase compute max units for sqrt_u128_max test (#2574) This increase is caused by upgrade of compiler builtins --- libraries/math/tests/instruction_count.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/math/tests/instruction_count.rs b/libraries/math/tests/instruction_count.rs index 97cfd353e99..9caabc3cc8b 100644 --- a/libraries/math/tests/instruction_count.rs +++ b/libraries/math/tests/instruction_count.rs @@ -78,7 +78,7 @@ async fn test_sqrt_u128() { async fn test_sqrt_u128_max() { let mut pc = ProgramTest::new("spl_math", id(), processor!(process_instruction)); - pc.set_bpf_compute_max_units(6_000); + pc.set_bpf_compute_max_units(6_500); let (mut banks_client, payer, recent_blockhash) = pc.start().await;