Replaces the bespoke 116-line conformance.sh with a conformance.conf + 1-line exec shim, reusing lib/guest/conformance.sh. Surfaced + fixed a silent undercount: the old awk extractor reported pipeline=40, but pipeline.sx has 152 assertions — real total is 562/562, not 450/450. Driver reads counter globals directly. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
6 lines
333 B
Bash
Executable File
6 lines
333 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# lib/apl/conformance.sh — APL conformance via the shared guest driver.
|
|
# Config lives in lib/apl/conformance.conf (MODE=counters). Override the binary
|
|
# with SX_SERVER=path/to/sx_server.exe bash lib/apl/conformance.sh
|
|
exec bash "$(dirname "$0")/../guest/conformance.sh" "$(dirname "$0")/conformance.conf" "$@"
|