smokes: add curated LLVM runner; archive legacy smokes; PHI-off unified across Bridge/Builder; LLVM resolver tracing; minimal Throw lowering; config env getters; dev profile and root cleaner; docs updated; CI workflow runs curated LLVM (PHI-on/off)
This commit is contained in:
@ -1,28 +1,40 @@
|
||||
|
||||
#![cfg(all(feature = "plugins", not(target_arch = "wasm32")))]
|
||||
|
||||
use nyash_rust::parser::NyashParser;
|
||||
use nyash_rust::runtime::plugin_loader_v2::{init_global_loader_v2, get_global_loader_v2};
|
||||
use nyash_rust::runtime::box_registry::get_global_registry;
|
||||
use nyash_rust::runtime::plugin_loader_v2::{get_global_loader_v2, init_global_loader_v2};
|
||||
use nyash_rust::runtime::PluginConfig;
|
||||
|
||||
fn try_init_plugins() -> bool {
|
||||
if !std::path::Path::new("nyash.toml").exists() { return false; }
|
||||
if let Err(e) = init_global_loader_v2("nyash.toml") { eprintln!("init failed: {:?}", e); return false; }
|
||||
if !std::path::Path::new("nyash.toml").exists() {
|
||||
return false;
|
||||
}
|
||||
if let Err(e) = init_global_loader_v2("nyash.toml") {
|
||||
eprintln!("init failed: {:?}", e);
|
||||
return false;
|
||||
}
|
||||
let loader = get_global_loader_v2();
|
||||
let loader = loader.read().unwrap();
|
||||
if let Some(conf) = &loader.config {
|
||||
let mut map = std::collections::HashMap::new();
|
||||
for (lib, def) in &conf.libraries { for b in &def.boxes { map.insert(b.clone(), lib.clone()); } }
|
||||
for (lib, def) in &conf.libraries {
|
||||
for b in &def.boxes {
|
||||
map.insert(b.clone(), lib.clone());
|
||||
}
|
||||
}
|
||||
get_global_registry().apply_plugin_config(&PluginConfig { plugins: map });
|
||||
true
|
||||
} else { false }
|
||||
} else {
|
||||
false
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore = "MIR13/plugin singleton: CounterBox shared instance parity pending"]
|
||||
fn e2e_counterbox_singleton_shared_across_news() {
|
||||
if !try_init_plugins() { return; }
|
||||
if !try_init_plugins() {
|
||||
return;
|
||||
}
|
||||
|
||||
// CounterBox is configured as singleton in nyash.toml
|
||||
let code = r#"
|
||||
|
||||
Reference in New Issue
Block a user