Skip to content

Commit

Permalink
Merge pull request #1434 from EliahKagan/fix-32bit-test-build
Browse files Browse the repository at this point in the history
Conditionally compile gix-revision at_symbol fuzzed test
  • Loading branch information
Byron authored Jul 1, 2024
2 parents 1e79c5c + 904262d commit 85019d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gix-revision/tests/spec/parse/anchor/at_symbol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fn braces_must_be_closed() {
}

#[test]
#[cfg_attr(target_pointer_width = "32", ignore = "Only works this way on 64 bit systems")]
#[cfg(target_pointer_width = "64")] // Only works this way on 64-bit systems.
fn fuzzed() {
let rec = parse("@{-9223372036854775808}");
assert_eq!(rec.nth_checked_out_branch, [Some(9223372036854775808), None]);
Expand Down

0 comments on commit 85019d0

Please sign in to comment.