From 8e6a6d54bf2c5c39ec7b864ef7885c19cf031762 Mon Sep 17 00:00:00 2001 From: Mario Fetka Date: Thu, 18 Jun 2026 19:18:27 +0200 Subject: [PATCH] tests: update namespace-import-layout test to use consolidated NSS_IMPORT_NOTES.md The doc consolidation pass merged NSS_NAMESPACE_AUDIT.md into doc/NSS_IMPORT_NOTES.md. Update the test script DOC variable to point to the new location; all required strings (dosNSpace.c, nameSpace.c, comnBeasts.h, latch.h, xCache.h, volume ID assignments) are present in the consolidated file. Co-Authored-By: Claude Sonnet 4.6 --- tests/nwfs/nwfs_nss_namespace_import_layout_test.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/nwfs/nwfs_nss_namespace_import_layout_test.sh.in b/tests/nwfs/nwfs_nss_namespace_import_layout_test.sh.in index e84f5a6..67c9107 100644 --- a/tests/nwfs/nwfs_nss_namespace_import_layout_test.sh.in +++ b/tests/nwfs/nwfs_nss_namespace_import_layout_test.sh.in @@ -55,7 +55,7 @@ fi grep -q 'DOSNS_Startup' "$SRC/src/nwfs/comn/namespace/dosNSpace.c" || fail "DOS namespace source is not the NSS implementation" grep -q 'COMN_RegisterNameSpace' "$SRC/src/nwfs/comn/namespace/dosNSpace.c" || fail "DOS namespace source no longer depends on the real NSS namespace registry" -DOC="$SRC/doc/NSS_NAMESPACE_AUDIT.md" +DOC="$SRC/doc/NSS_IMPORT_NOTES.md" test -f "$DOC" || fail "missing NSS namespace audit document" grep -q 'dosNSpace.c' "$DOC" || fail "dependency order must start from imported DOS namespace source" grep -q 'nameSpace.c' "$DOC" || fail "dependency order must record the namespace registry source"