From 99366f3b5d2f2ec9fe15a52d1a0256857524cdc5 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Mon, 24 Jul 2023 02:42:22 -0400 Subject: [PATCH] ci(sparc64): increase timeout time --- cli/src/tests/parser_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/tests/parser_test.rs b/cli/src/tests/parser_test.rs index af5f36f5..a9815d5c 100644 --- a/cli/src/tests/parser_test.rs +++ b/cli/src/tests/parser_test.rs @@ -665,7 +665,7 @@ fn test_parsing_with_a_timeout() { assert!(start_time.elapsed().as_micros() < 2000); #[cfg(target_arch = "sparc64")] - assert!(start_time.elapsed().as_micros() < 4000); + assert!(start_time.elapsed().as_micros() < 8000); // Continue parsing, but pause after 1 ms of processing. parser.set_timeout_micros(5000);