There was an error while loading. Please reload this page.
1 parent 4e3a952 commit 79e511cCopy full SHA for 79e511c
1 file changed
conformance/bin/run-conformance-demo
@@ -21,10 +21,10 @@ echo -e "${BOLD}${CYAN}=== Starting Agentic Resource Discovery Conformance Verif
21
# 1. Verify manifest files
22
echo -e "\n${BOLD}[Step 1/3] Validating mock manifest files...${RESET}"
23
MANIFEST_STATUS=0
24
-for manifest_file in "$PROJECT_ROOT"/conformance/examples/*.json; do
+while IFS= read -r -d '' manifest_file; do
25
echo -e "\n${CYAN}Testing file: $(basename "$manifest_file")${RESET}"
26
"$PROJECT_ROOT/conformance/bin/conformance-test" manifest "$manifest_file" || MANIFEST_STATUS=1
27
-done
+done < <(find "$PROJECT_ROOT/conformance/examples" -type f -name "*.json" -print0)
28
29
if [ $MANIFEST_STATUS -eq 0 ]; then
30
echo -e " ${GREEN}✓ Step 1: All mock manifests are fully spec-compliant!${RESET}"
0 commit comments