ci: remove unnecessary targets

This commit is contained in:
Amaan Qureshi 2024-02-04 02:20:48 -05:00
parent 62b3794838
commit 55afb4efaf
No known key found for this signature in database
GPG key ID: E67890ADC4227273
3 changed files with 0 additions and 45 deletions

View file

@ -665,12 +665,8 @@ fn test_parsing_with_a_timeout() {
None,
);
assert!(tree.is_none());
#[cfg(not(target_arch = "sparc64"))]
assert!(start_time.elapsed().as_micros() < 2000);
#[cfg(target_arch = "sparc64")]
assert!(start_time.elapsed().as_micros() < 8000);
// Continue parsing, but pause after 1 ms of processing.
parser.set_timeout_micros(5000);
let start_time = time::Instant::now();