Skip to content

Commit

Permalink
Update entry_info::check_struct_size test for MIPS architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsuya6502 committed Jan 4, 2025
1 parent aac72ab commit cdfad26
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/common/concurrent/entry_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,8 @@ mod test {
};

let expected_sizes = match (arch, is_quanta_enabled) {
(Linux64 | Linux32Arm, true) => vec![("1.51", 56)],
(Linux64 | Linux32Arm | Linux32Mips, true) => vec![("1.51", 56)],
(Linux32X86, true) => vec![("1.51", 48)],
(Linux32Mips, true) => unimplemented!(),
(MacOS64, true) => vec![("1.62", 56)],
(Linux64, false) => vec![("1.66", 104), ("1.60", 128)],
(Linux32X86, false) => unimplemented!(),
Expand Down

0 comments on commit cdfad26

Please sign in to comment.