Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 35s
New adversarial/cross-phase coverage: diamond resource+group hierarchies (deny wins per path), chain inheritance + leaf deny, cycle termination, multi-peer delegation, fact validation, audit snapshot/restore round-trip. Adds acl-validate-facts/acl-facts-valid? (schema) and acl-audit-snapshot/ restore!/copy (audit). Fixed acl-audit-restore! rebuilding the live log via map (append! silently no-ops on map-derived lists). Suite is prover-free: a substrate JIT bug loops the recursive proof reconstructor on deep chains in warm processes (documented in Blockers); acl-permit? is unaffected. 145/145. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
33 lines
787 B
Plaintext
33 lines
787 B
Plaintext
# ACL conformance config — sourced by lib/guest/conformance.sh.
|
|
|
|
LANG_NAME=acl
|
|
MODE=dict
|
|
|
|
PRELOADS=(
|
|
lib/datalog/tokenizer.sx
|
|
lib/datalog/parser.sx
|
|
lib/datalog/unify.sx
|
|
lib/datalog/db.sx
|
|
lib/datalog/builtins.sx
|
|
lib/datalog/aggregates.sx
|
|
lib/datalog/strata.sx
|
|
lib/datalog/eval.sx
|
|
lib/datalog/api.sx
|
|
lib/datalog/magic.sx
|
|
lib/acl/schema.sx
|
|
lib/acl/facts.sx
|
|
lib/acl/engine.sx
|
|
lib/acl/explain.sx
|
|
lib/acl/audit.sx
|
|
lib/acl/federation.sx
|
|
lib/acl/api.sx
|
|
)
|
|
|
|
SUITES=(
|
|
"direct:lib/acl/tests/direct.sx:(acl-direct-tests-run!)"
|
|
"inherit:lib/acl/tests/inherit.sx:(acl-inherit-tests-run!)"
|
|
"explain:lib/acl/tests/explain.sx:(acl-explain-tests-run!)"
|
|
"fed:lib/acl/tests/fed.sx:(acl-fed-tests-run!)"
|
|
"harden:lib/acl/tests/harden.sx:(acl-harden-tests-run!)"
|
|
)
|