Skip to content

Commit 56cf8fb

Browse files
itcmsgrclaude
andcommitted
fix: V4+V5 audit violations — renamed file references in CI + selftest
V4 (P0): ci-architecture.yml:360 referenced deleted test_module_smoke.sh → updated to test_module_selftest.sh V5 (P0): cmd_selftest.sh:114 referenced deleted smoke_test.sh → updated to selftest.sh Also: docs/BUILD_STATUS.md G8-4 reference updated. Ref: V195_SMOKE_SELFTEST_AUDIT.md Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0803fb0 commit 56cf8fb

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci-architecture.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ jobs:
357357
# G8-1/G8-2/G8-3 run as Go tests (already in ci-go.yml via go test ./...)
358358
# G8-4 is a runtime smoke test — skips gracefully in CI (no validator binary)
359359
- name: Module smoke test (G8-4)
360-
run: bash cli/lib/nftban/tests/test_module_smoke.sh
360+
run: bash cli/lib/nftban/tests/test_module_selftest.sh
361361

362362
# =====================================================================
363363
# v1.86 B86-4: Contract Enforcement — Legacy Regression Blockers

cli/lib/nftban/cli/cmd_selftest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ nftban_cmd_selftest() {
111111
nftban_selftest_run() {
112112
# Use central path from config
113113
local tests_dir="${NFTBAN_TESTS_DIR:-/usr/lib/nftban/tests}"
114-
local test_script="${tests_dir}/smoke_test.sh"
114+
local test_script="${tests_dir}/selftest.sh"
115115

116116
if [[ ! -f "$test_script" ]]; then
117117
echo "ERROR: Smoke test script not found at: $test_script" >&2

docs/BUILD_STATUS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ These require a deployed system and are not part of PR CI:
8787
|------|-----------------|------|
8888
| G2-1 | Truth consistency: validator status = health status | test_truth_consistency.sh |
8989
| G7-3 | Exit code contract: 0=PROTECTED, 1=DEGRADED, 2=DOWN | test_exit_code_consistency.sh |
90-
| G8-4 | Module list: validator JSON = health JSON | test_module_smoke.sh |
90+
| G8-4 | Module list: validator JSON = health JSON | test_module_selftest.sh |
9191

9292
---
9393

0 commit comments

Comments
 (0)