Merge pull request #960 from Max13245/fix/test-json-parse-cli

Fix test_json_parse_cli
This commit is contained in:
Eric Hawicz
2026-08-20 21:27:31 -04:00
committed by GitHub
2 changed files with 5 additions and 4 deletions
+4 -3
View File
@@ -38,9 +38,10 @@ set(ALL_TEST_NAMES
test_visit test_visit
test_object_iterator) test_object_iterator)
set(NOBUILD_TEST_NAMES set(NOBUILD_TEST_NAMES "")
test_json_parse_cli if (BUILD_APPS)
) set(NOBUILD_TEST_NAMES ${NOBUILD_TEST_NAMES} test_json_parse_cli)
endif()
if (NOT DISABLE_JSON_POINTER) if (NOT DISABLE_JSON_POINTER)
set(ALL_TEST_NAMES ${ALL_TEST_NAMES} test_json_pointer) set(ALL_TEST_NAMES ${ALL_TEST_NAMES} test_json_pointer)
+1 -1
View File
@@ -10,7 +10,7 @@ fi
set -x -v set -x -v
echo -n '"tenant=blue;note=CANARY_STACK_WINDOW_2026;status=ok"' > file1.dat printf '%s' '"tenant=blue;note=CANARY_STACK_WINDOW_2026;status=ok"' > file1.dat
(printf '"' ; printf 'A%.0s' $(seq 1 16) ; echo 'e2' | xxd -r -p) > file2.dat (printf '"' ; printf 'A%.0s' $(seq 1 16) ; echo 'e2' | xxd -r -p) > file2.dat
TESTNAME="${0##*/}" TESTNAME="${0##*/}"