Skip to content

Commit fc71716

Browse files
committed
Fix tests
1 parent 5bfbf5c commit fc71716

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/vm/src/modules/file_system_cache.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -423,11 +423,11 @@ mod tests {
423423
};
424424
let target = Target::new(triple.clone(), wasmer::CpuFeature::POPCNT.into());
425425
let id = target_id(&target);
426-
assert_eq!(id, "x86_64-nintendo-fuchsia-gnu-coff-01E9F9FE");
426+
assert_eq!(id, "x86_64-nintendo-fuchsia-gnu-coff-719EEF18");
427427
// Changing CPU features changes the hash part
428428
let target = Target::new(triple, wasmer::CpuFeature::AVX512DQ.into());
429429
let id = target_id(&target);
430-
assert_eq!(id, "x86_64-nintendo-fuchsia-gnu-coff-93001945");
430+
assert_eq!(id, "x86_64-nintendo-fuchsia-gnu-coff-E3770FA3");
431431

432432
// Works for durrect target (hashing is deterministic);
433433
let target = Target::default();
@@ -454,11 +454,11 @@ mod tests {
454454
p.as_os_str(),
455455
if cfg!(windows) {
456456
format!(
457-
"modules\\{discriminator}-wasmer17\\x86_64-nintendo-fuchsia-gnu-coff-01E9F9FE"
457+
"modules\\{discriminator}-wasmer17\\x86_64-nintendo-fuchsia-gnu-coff-719EEF18"
458458
)
459459
} else {
460460
format!(
461-
"modules/{discriminator}-wasmer17/x86_64-nintendo-fuchsia-gnu-coff-01E9F9FE"
461+
"modules/{discriminator}-wasmer17/x86_64-nintendo-fuchsia-gnu-coff-719EEF18"
462462
)
463463
}
464464
.as_str()

0 commit comments

Comments
 (0)