7ae92d3e60
closes #60 The fixture-corpus filter (NON_PARSEABLE_FIXTURES + list_ail_fixtures) was copy-pasted across three test crates and drifted out of sync as new reject fixtures landed; the examples_dir / workspace_root path walk was reimplemented ~30 more times across the suite, under two spellings (workspace_root / ws_root). Introduce crates/ailang-test-support — a zero-dependency, dev-only leaf crate — as the single home for these helpers: - NON_PARSEABLE_FIXTURES, list_ail_fixtures - workspace_root, examples_dir - canonical_workspace_root (symlink-resolved variant, for the tsan/ race tests that feed the root into native build steps) All integration-test copies across ailang-core, ailang-surface, ailang-prose, ailang-check, and ail now import from the shared crate; the local definitions and their now-orphaned path imports are removed. Path helpers resolve via the support crate's own CARGO_MANIFEST_DIR, so they return the correct absolute paths from any caller. ail_bin helpers are intentionally left in place: they depend on env!("CARGO_BIN_EXE_ail"), which Cargo only defines when compiling the ail crate's own integration tests, so they cannot move to a shared crate. Behaviour-identical: same paths, same fixture lists; full workspace test suite green. Net -177 LOC.
54 lines
2.1 KiB
Rust
54 lines
2.1 KiB
Rust
//! Embedding-ABI M1 CLI (spec §5): `ail build --emit=staticlib`
|
|
//! produces `lib<entry>.a` (program-only) + a separate
|
|
//! `libailang_rt.a`, and emits NO executable / NO `@main`.
|
|
|
|
use ailang_test_support::workspace_root;
|
|
use std::process::Command;
|
|
|
|
fn ail_bin() -> &'static str { env!("CARGO_BIN_EXE_ail") }
|
|
|
|
#[test]
|
|
fn staticlib_emit_produces_two_archives() {
|
|
let fixture = workspace_root().join("examples").join("embed_backtest_step.ail");
|
|
let outdir = std::env::temp_dir()
|
|
.join(format!("ail-embed-cli-{}", std::process::id()));
|
|
std::fs::create_dir_all(&outdir).unwrap();
|
|
|
|
let out = Command::new(ail_bin())
|
|
.args([
|
|
"build", fixture.to_str().unwrap(),
|
|
"--emit=staticlib",
|
|
"-o", outdir.to_str().unwrap(),
|
|
])
|
|
.output().expect("ail build --emit=staticlib");
|
|
assert!(out.status.success(),
|
|
"staticlib build failed: stdout={} stderr={}",
|
|
String::from_utf8_lossy(&out.stdout),
|
|
String::from_utf8_lossy(&out.stderr));
|
|
|
|
assert!(outdir.join("libembed_backtest_step.a").exists(),
|
|
"expected libembed_backtest_step.a in {outdir:?}");
|
|
assert!(outdir.join("libailang_rt.a").exists(),
|
|
"expected separate libailang_rt.a in {outdir:?}");
|
|
}
|
|
|
|
#[test]
|
|
fn staticlib_emit_requires_an_export() {
|
|
// embed_noentry_baseline has no `(export …)` fn.
|
|
let fixture = workspace_root().join("examples")
|
|
.join("embed_noentry_baseline.ail");
|
|
let outdir = std::env::temp_dir()
|
|
.join(format!("ail-embed-noexp-{}", std::process::id()));
|
|
std::fs::create_dir_all(&outdir).unwrap();
|
|
let out = Command::new(ail_bin())
|
|
.args(["build", fixture.to_str().unwrap(),
|
|
"--emit=staticlib", "-o", outdir.to_str().unwrap()])
|
|
.output().expect("ail build");
|
|
assert!(!out.status.success(),
|
|
"staticlib build with zero exports must fail");
|
|
assert!(String::from_utf8_lossy(&out.stderr)
|
|
.contains("at least one `(export"),
|
|
"expected the zero-export staticlib error; got {}",
|
|
String::from_utf8_lossy(&out.stderr));
|
|
}
|