WIP

WIP

WIP

ignore some cli tests that are going to move

try fix for linux valgrind tests

try a legacy host for valgrind

fix roc_glue tests
This commit is contained in:
Luke Boswell 2024-07-02 15:35:07 +10:00
parent b9a17f4a49
commit dc0902bc92
No known key found for this signature in database
GPG key ID: F6DB3C9DB47377B0
12 changed files with 350 additions and 327 deletions

View file

@ -3208,7 +3208,7 @@ fn finish_specialization<'a>(
.collect();
let module_id = state.root_id;
let uses_prebuilt_platform = match platform_data {
let needs_prebuilt_host = match platform_data {
Some(data) => data.is_prebuilt,
// If there's no platform data (e.g. because we're building a module)
// then there's no prebuilt platform either!
@ -3231,7 +3231,7 @@ fn finish_specialization<'a>(
timings: state.timings,
toplevel_expects,
glue_layouts: GlueLayouts { getters: vec![] },
uses_prebuilt_platform,
needs_prebuilt_host,
})
}

View file

@ -186,7 +186,7 @@ pub struct MonomorphizedModule<'a> {
pub sources: MutMap<ModuleId, (PathBuf, Box<str>)>,
pub timings: MutMap<ModuleId, ModuleTiming>,
pub expectations: VecMap<ModuleId, Expectations>,
pub uses_prebuilt_platform: bool,
pub needs_prebuilt_host: bool,
pub glue_layouts: GlueLayouts<'a>,
}