Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 57s
mod/decision-diff compares one report's action under two rule sets; mod/policy-impact batches a set and returns only the reports whose decision flips; mod/impact-count / mod/impact-report summarize. Lets a mod team measure a policy change's blast radius before shipping (e.g. removing spam-hide flips r1 hide→keep). Pure SX over decide-report. +13 tests. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
# Mod conformance config — sourced by lib/guest/conformance.sh.
|
|
|
|
LANG_NAME=mod
|
|
MODE=dict
|
|
|
|
PRELOADS=(
|
|
lib/guest/pratt.sx
|
|
lib/prolog/tokenizer.sx
|
|
lib/prolog/parser.sx
|
|
lib/prolog/runtime.sx
|
|
lib/prolog/query.sx
|
|
lib/prolog/compiler.sx
|
|
lib/mod/schema.sx
|
|
lib/mod/policy.sx
|
|
lib/mod/engine.sx
|
|
lib/mod/explain.sx
|
|
lib/mod/severity.sx
|
|
lib/mod/offenders.sx
|
|
lib/mod/quorum.sx
|
|
lib/mod/trace.sx
|
|
lib/mod/whatif.sx
|
|
lib/mod/lifecycle.sx
|
|
lib/mod/audit.sx
|
|
lib/mod/api.sx
|
|
lib/mod/fed.sx
|
|
lib/mod/link.sx
|
|
lib/mod/lint.sx
|
|
)
|
|
|
|
SUITES=(
|
|
"decide:lib/mod/tests/decide.sx:(mod-decide-tests-run!)"
|
|
"audit:lib/mod/tests/audit.sx:(mod-audit-tests-run!)"
|
|
"escalation:lib/mod/tests/escalation.sx:(mod-escalation-tests-run!)"
|
|
"fed:lib/mod/tests/fed.sx:(mod-fed-tests-run!)"
|
|
"extensions:lib/mod/tests/extensions.sx:(mod-extensions-tests-run!)"
|
|
"link:lib/mod/tests/link.sx:(mod-link-tests-run!)"
|
|
"lint:lib/mod/tests/lint.sx:(mod-lint-tests-run!)"
|
|
"severity:lib/mod/tests/severity.sx:(mod-severity-tests-run!)"
|
|
"offenders:lib/mod/tests/offenders.sx:(mod-offenders-tests-run!)"
|
|
"quorum:lib/mod/tests/quorum.sx:(mod-quorum-tests-run!)"
|
|
"trace:lib/mod/tests/trace.sx:(mod-trace-tests-run!)"
|
|
"whatif:lib/mod/tests/whatif.sx:(mod-whatif-tests-run!)"
|
|
)
|