├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTORS.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── appveyor.yml ├── cJSON.c ├── cJSON.h ├── cJSON_Utils.c ├── cJSON_Utils.h ├── fuzzing ├── CMakeLists.txt ├── afl-prepare-linux.sh ├── afl.c ├── afl.sh ├── cjson_read_fuzzer.c ├── fuzz_main.c ├── inputs │ ├── test1 │ ├── test10 │ ├── test11 │ ├── test2 │ ├── test3 │ ├── test3.bu │ ├── test3.uf │ ├── test3.uu │ ├── test4 │ ├── test5 │ ├── test6 │ ├── test7 │ ├── test8 │ └── test9 ├── json.dict └── ossfuzz.sh ├── library_config ├── cJSONConfig.cmake.in ├── cJSONConfigVersion.cmake.in ├── libcjson.pc.in ├── libcjson_utils.pc.in └── uninstall.cmake ├── test.c ├── tests ├── CMakeLists.txt ├── cjson_add.c ├── common.h ├── compare_tests.c ├── inputs │ ├── test1 │ ├── test1.expected │ ├── test10 │ ├── test10.expected │ ├── test11 │ ├── test11.expected │ ├── test2 │ ├── test2.expected │ ├── test3 │ ├── test3.expected │ ├── test4 │ ├── test4.expected │ ├── test5 │ ├── test5.expected │ ├── test6 │ ├── test7 │ ├── test7.expected │ ├── test8 │ ├── test8.expected │ ├── test9 │ └── test9.expected ├── json-patch-tests │ ├── .npmignore │ ├── README.md │ ├── cjson-utils-tests.json │ ├── package.json │ ├── spec_tests.json │ └── tests.json ├── json_patch_tests.c ├── minify_tests.c ├── misc_tests.c ├── misc_utils_tests.c ├── old_utils_tests.c ├── parse_array.c ├── parse_examples.c ├── parse_hex4.c ├── parse_number.c ├── parse_object.c ├── parse_string.c ├── parse_value.c ├── parse_with_opts.c ├── print_array.c ├── print_number.c ├── print_object.c ├── print_string.c ├── print_value.c ├── readme_examples.c ├── unity │ ├── README.md │ ├── auto │ │ ├── colour_prompt.rb │ │ ├── colour_reporter.rb │ │ ├── generate_config.yml │ │ ├── generate_module.rb │ │ ├── generate_test_runner.rb │ │ ├── parse_output.rb │ │ ├── stylize_as_junit.rb │ │ ├── test_file_filter.rb │ │ ├── type_sanitizer.rb │ │ ├── unity_test_summary.py │ │ ├── unity_test_summary.rb │ │ └── unity_to_junit.py │ ├── docs │ │ ├── ThrowTheSwitchCodingStandard.md │ │ ├── UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf │ │ ├── UnityAssertionsReference.md │ │ ├── UnityConfigurationGuide.md │ │ ├── UnityGettingStartedGuide.md │ │ ├── UnityHelperScriptsGuide.md │ │ └── license.txt │ ├── examples │ │ ├── example_1 │ │ │ ├── makefile │ │ │ ├── readme.txt │ │ │ ├── src │ │ │ │ ├── ProductionCode.c │ │ │ │ ├── ProductionCode.h │ │ │ │ ├── ProductionCode2.c │ │ │ │ └── ProductionCode2.h │ │ │ └── test │ │ │ │ ├── TestProductionCode.c │ │ │ │ ├── TestProductionCode2.c │ │ │ │ └── test_runners │ │ │ │ ├── TestProductionCode2_Runner.c │ │ │ │ └── TestProductionCode_Runner.c │ │ ├── example_2 │ │ │ ├── makefile │ │ │ ├── readme.txt │ │ │ ├── src │ │ │ │ ├── ProductionCode.c │ │ │ │ ├── ProductionCode.h │ │ │ │ ├── ProductionCode2.c │ │ │ │ └── ProductionCode2.h │ │ │ └── test │ │ │ │ ├── TestProductionCode.c │ │ │ │ ├── TestProductionCode2.c │ │ │ │ └── test_runners │ │ │ │ ├── TestProductionCode2_Runner.c │ │ │ │ ├── TestProductionCode_Runner.c │ │ │ │ └── all_tests.c │ │ ├── example_3 │ │ │ ├── helper │ │ │ │ ├── UnityHelper.c │ │ │ │ └── UnityHelper.h │ │ │ ├── rakefile.rb │ │ │ ├── rakefile_helper.rb │ │ │ ├── readme.txt │ │ │ ├── src │ │ │ │ ├── ProductionCode.c │ │ │ │ ├── ProductionCode.h │ │ │ │ ├── ProductionCode2.c │ │ │ │ └── ProductionCode2.h │ │ │ ├── target_gcc_32.yml │ │ │ └── test │ │ │ │ ├── TestProductionCode.c │ │ │ │ └── TestProductionCode2.c │ │ └── unity_config.h │ ├── extras │ │ ├── eclipse │ │ │ └── error_parsers.txt │ │ └── fixture │ │ │ ├── rakefile.rb │ │ │ ├── rakefile_helper.rb │ │ │ ├── readme.txt │ │ │ ├── src │ │ │ ├── unity_fixture.c │ │ │ ├── unity_fixture.h │ │ │ ├── unity_fixture_internals.h │ │ │ └── unity_fixture_malloc_overrides.h │ │ │ └── test │ │ │ ├── Makefile │ │ │ ├── main │ │ │ └── AllTests.c │ │ │ ├── template_fixture_tests.c │ │ │ ├── unity_fixture_Test.c │ │ │ ├── unity_fixture_TestRunner.c │ │ │ ├── unity_output_Spy.c │ │ │ └── unity_output_Spy.h │ ├── release │ │ ├── build.info │ │ └── version.info │ ├── src │ │ ├── unity.c │ │ ├── unity.h │ │ └── unity_internals.h │ └── test │ │ ├── .rubocop.yml │ │ ├── Makefile │ │ ├── expectdata │ │ ├── testsample_cmd.c │ │ ├── testsample_def.c │ │ ├── testsample_head1.c │ │ ├── testsample_head1.h │ │ ├── testsample_mock_cmd.c │ │ ├── testsample_mock_def.c │ │ ├── testsample_mock_head1.c │ │ ├── testsample_mock_head1.h │ │ ├── testsample_mock_new1.c │ │ ├── testsample_mock_new2.c │ │ ├── testsample_mock_param.c │ │ ├── testsample_mock_run1.c │ │ ├── testsample_mock_run2.c │ │ ├── testsample_mock_yaml.c │ │ ├── testsample_new1.c │ │ ├── testsample_new2.c │ │ ├── testsample_param.c │ │ ├── testsample_run1.c │ │ ├── testsample_run2.c │ │ └── testsample_yaml.c │ │ ├── rakefile │ │ ├── rakefile_helper.rb │ │ ├── spec │ │ └── generate_module_existing_file_spec.rb │ │ ├── targets │ │ ├── clang_file.yml │ │ ├── clang_strict.yml │ │ ├── gcc_32.yml │ │ ├── gcc_64.yml │ │ ├── gcc_auto_limits.yml │ │ ├── gcc_auto_stdint.yml │ │ ├── gcc_manual_math.yml │ │ ├── hitech_picc18.yml │ │ ├── iar_arm_v4.yml │ │ ├── iar_arm_v5.yml │ │ ├── iar_arm_v5_3.yml │ │ ├── iar_armcortex_LM3S9B92_v5_4.yml │ │ ├── iar_cortexm3_v5.yml │ │ ├── iar_msp430.yml │ │ └── iar_sh2a_v6.yml │ │ ├── testdata │ │ ├── CException.h │ │ ├── Defs.h │ │ ├── cmock.h │ │ ├── mockMock.h │ │ ├── testRunnerGenerator.c │ │ ├── testRunnerGeneratorSmall.c │ │ └── testRunnerGeneratorWithMocks.c │ │ └── tests │ │ ├── test_generate_test_runner.rb │ │ ├── testparameterized.c │ │ └── testunity.c └── unity_setup.c └── valgrind.supp /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/SECURITY.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/cJSON.c -------------------------------------------------------------------------------- /cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/cJSON.h -------------------------------------------------------------------------------- /cJSON_Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/cJSON_Utils.c -------------------------------------------------------------------------------- /cJSON_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/cJSON_Utils.h -------------------------------------------------------------------------------- /fuzzing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/CMakeLists.txt -------------------------------------------------------------------------------- /fuzzing/afl-prepare-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/afl-prepare-linux.sh -------------------------------------------------------------------------------- /fuzzing/afl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/afl.c -------------------------------------------------------------------------------- /fuzzing/afl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/afl.sh -------------------------------------------------------------------------------- /fuzzing/cjson_read_fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/cjson_read_fuzzer.c -------------------------------------------------------------------------------- /fuzzing/fuzz_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/fuzz_main.c -------------------------------------------------------------------------------- /fuzzing/inputs/test1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/inputs/test1 -------------------------------------------------------------------------------- /fuzzing/inputs/test10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/inputs/test10 -------------------------------------------------------------------------------- /fuzzing/inputs/test11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/inputs/test11 -------------------------------------------------------------------------------- /fuzzing/inputs/test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/inputs/test2 -------------------------------------------------------------------------------- /fuzzing/inputs/test3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/inputs/test3 -------------------------------------------------------------------------------- /fuzzing/inputs/test3.bu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/inputs/test3.bu -------------------------------------------------------------------------------- /fuzzing/inputs/test3.uf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/inputs/test3.uf -------------------------------------------------------------------------------- /fuzzing/inputs/test3.uu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/inputs/test3.uu -------------------------------------------------------------------------------- /fuzzing/inputs/test4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/inputs/test4 -------------------------------------------------------------------------------- /fuzzing/inputs/test5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/inputs/test5 -------------------------------------------------------------------------------- /fuzzing/inputs/test6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/inputs/test6 -------------------------------------------------------------------------------- /fuzzing/inputs/test7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/inputs/test7 -------------------------------------------------------------------------------- /fuzzing/inputs/test8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/inputs/test8 -------------------------------------------------------------------------------- /fuzzing/inputs/test9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/inputs/test9 -------------------------------------------------------------------------------- /fuzzing/json.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/json.dict -------------------------------------------------------------------------------- /fuzzing/ossfuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/fuzzing/ossfuzz.sh -------------------------------------------------------------------------------- /library_config/cJSONConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/library_config/cJSONConfig.cmake.in -------------------------------------------------------------------------------- /library_config/cJSONConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/library_config/cJSONConfigVersion.cmake.in -------------------------------------------------------------------------------- /library_config/libcjson.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/library_config/libcjson.pc.in -------------------------------------------------------------------------------- /library_config/libcjson_utils.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/library_config/libcjson_utils.pc.in -------------------------------------------------------------------------------- /library_config/uninstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/library_config/uninstall.cmake -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/test.c -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cjson_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/cjson_add.c -------------------------------------------------------------------------------- /tests/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/common.h -------------------------------------------------------------------------------- /tests/compare_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/compare_tests.c -------------------------------------------------------------------------------- /tests/inputs/test1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test1 -------------------------------------------------------------------------------- /tests/inputs/test1.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test1.expected -------------------------------------------------------------------------------- /tests/inputs/test10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test10 -------------------------------------------------------------------------------- /tests/inputs/test10.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test10.expected -------------------------------------------------------------------------------- /tests/inputs/test11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test11 -------------------------------------------------------------------------------- /tests/inputs/test11.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test11.expected -------------------------------------------------------------------------------- /tests/inputs/test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test2 -------------------------------------------------------------------------------- /tests/inputs/test2.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test2.expected -------------------------------------------------------------------------------- /tests/inputs/test3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test3 -------------------------------------------------------------------------------- /tests/inputs/test3.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test3.expected -------------------------------------------------------------------------------- /tests/inputs/test4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test4 -------------------------------------------------------------------------------- /tests/inputs/test4.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test4.expected -------------------------------------------------------------------------------- /tests/inputs/test5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test5 -------------------------------------------------------------------------------- /tests/inputs/test5.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test5.expected -------------------------------------------------------------------------------- /tests/inputs/test6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test6 -------------------------------------------------------------------------------- /tests/inputs/test7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test7 -------------------------------------------------------------------------------- /tests/inputs/test7.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test7.expected -------------------------------------------------------------------------------- /tests/inputs/test8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test8 -------------------------------------------------------------------------------- /tests/inputs/test8.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test8.expected -------------------------------------------------------------------------------- /tests/inputs/test9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test9 -------------------------------------------------------------------------------- /tests/inputs/test9.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/inputs/test9.expected -------------------------------------------------------------------------------- /tests/json-patch-tests/.npmignore: -------------------------------------------------------------------------------- 1 | .editorconfig 2 | .gitignore 3 | -------------------------------------------------------------------------------- /tests/json-patch-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/json-patch-tests/README.md -------------------------------------------------------------------------------- /tests/json-patch-tests/cjson-utils-tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/json-patch-tests/cjson-utils-tests.json -------------------------------------------------------------------------------- /tests/json-patch-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/json-patch-tests/package.json -------------------------------------------------------------------------------- /tests/json-patch-tests/spec_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/json-patch-tests/spec_tests.json -------------------------------------------------------------------------------- /tests/json-patch-tests/tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/json-patch-tests/tests.json -------------------------------------------------------------------------------- /tests/json_patch_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/json_patch_tests.c -------------------------------------------------------------------------------- /tests/minify_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/minify_tests.c -------------------------------------------------------------------------------- /tests/misc_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/misc_tests.c -------------------------------------------------------------------------------- /tests/misc_utils_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/misc_utils_tests.c -------------------------------------------------------------------------------- /tests/old_utils_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/old_utils_tests.c -------------------------------------------------------------------------------- /tests/parse_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/parse_array.c -------------------------------------------------------------------------------- /tests/parse_examples.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/parse_examples.c -------------------------------------------------------------------------------- /tests/parse_hex4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/parse_hex4.c -------------------------------------------------------------------------------- /tests/parse_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/parse_number.c -------------------------------------------------------------------------------- /tests/parse_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/parse_object.c -------------------------------------------------------------------------------- /tests/parse_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/parse_string.c -------------------------------------------------------------------------------- /tests/parse_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/parse_value.c -------------------------------------------------------------------------------- /tests/parse_with_opts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/parse_with_opts.c -------------------------------------------------------------------------------- /tests/print_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/print_array.c -------------------------------------------------------------------------------- /tests/print_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/print_number.c -------------------------------------------------------------------------------- /tests/print_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/print_object.c -------------------------------------------------------------------------------- /tests/print_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/print_string.c -------------------------------------------------------------------------------- /tests/print_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/print_value.c -------------------------------------------------------------------------------- /tests/readme_examples.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/readme_examples.c -------------------------------------------------------------------------------- /tests/unity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/README.md -------------------------------------------------------------------------------- /tests/unity/auto/colour_prompt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/auto/colour_prompt.rb -------------------------------------------------------------------------------- /tests/unity/auto/colour_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/auto/colour_reporter.rb -------------------------------------------------------------------------------- /tests/unity/auto/generate_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/auto/generate_config.yml -------------------------------------------------------------------------------- /tests/unity/auto/generate_module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/auto/generate_module.rb -------------------------------------------------------------------------------- /tests/unity/auto/generate_test_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/auto/generate_test_runner.rb -------------------------------------------------------------------------------- /tests/unity/auto/parse_output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/auto/parse_output.rb -------------------------------------------------------------------------------- /tests/unity/auto/stylize_as_junit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/auto/stylize_as_junit.rb -------------------------------------------------------------------------------- /tests/unity/auto/test_file_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/auto/test_file_filter.rb -------------------------------------------------------------------------------- /tests/unity/auto/type_sanitizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/auto/type_sanitizer.rb -------------------------------------------------------------------------------- /tests/unity/auto/unity_test_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/auto/unity_test_summary.py -------------------------------------------------------------------------------- /tests/unity/auto/unity_test_summary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/auto/unity_test_summary.rb -------------------------------------------------------------------------------- /tests/unity/auto/unity_to_junit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/auto/unity_to_junit.py -------------------------------------------------------------------------------- /tests/unity/docs/ThrowTheSwitchCodingStandard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/docs/ThrowTheSwitchCodingStandard.md -------------------------------------------------------------------------------- /tests/unity/docs/UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/docs/UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf -------------------------------------------------------------------------------- /tests/unity/docs/UnityAssertionsReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/docs/UnityAssertionsReference.md -------------------------------------------------------------------------------- /tests/unity/docs/UnityConfigurationGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/docs/UnityConfigurationGuide.md -------------------------------------------------------------------------------- /tests/unity/docs/UnityGettingStartedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/docs/UnityGettingStartedGuide.md -------------------------------------------------------------------------------- /tests/unity/docs/UnityHelperScriptsGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/docs/UnityHelperScriptsGuide.md -------------------------------------------------------------------------------- /tests/unity/docs/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/docs/license.txt -------------------------------------------------------------------------------- /tests/unity/examples/example_1/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_1/makefile -------------------------------------------------------------------------------- /tests/unity/examples/example_1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_1/readme.txt -------------------------------------------------------------------------------- /tests/unity/examples/example_1/src/ProductionCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_1/src/ProductionCode.c -------------------------------------------------------------------------------- /tests/unity/examples/example_1/src/ProductionCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_1/src/ProductionCode.h -------------------------------------------------------------------------------- /tests/unity/examples/example_1/src/ProductionCode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_1/src/ProductionCode2.c -------------------------------------------------------------------------------- /tests/unity/examples/example_1/src/ProductionCode2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_1/src/ProductionCode2.h -------------------------------------------------------------------------------- /tests/unity/examples/example_1/test/TestProductionCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_1/test/TestProductionCode.c -------------------------------------------------------------------------------- /tests/unity/examples/example_1/test/TestProductionCode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_1/test/TestProductionCode2.c -------------------------------------------------------------------------------- /tests/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c -------------------------------------------------------------------------------- /tests/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c -------------------------------------------------------------------------------- /tests/unity/examples/example_2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_2/makefile -------------------------------------------------------------------------------- /tests/unity/examples/example_2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_2/readme.txt -------------------------------------------------------------------------------- /tests/unity/examples/example_2/src/ProductionCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_2/src/ProductionCode.c -------------------------------------------------------------------------------- /tests/unity/examples/example_2/src/ProductionCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_2/src/ProductionCode.h -------------------------------------------------------------------------------- /tests/unity/examples/example_2/src/ProductionCode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_2/src/ProductionCode2.c -------------------------------------------------------------------------------- /tests/unity/examples/example_2/src/ProductionCode2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_2/src/ProductionCode2.h -------------------------------------------------------------------------------- /tests/unity/examples/example_2/test/TestProductionCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_2/test/TestProductionCode.c -------------------------------------------------------------------------------- /tests/unity/examples/example_2/test/TestProductionCode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_2/test/TestProductionCode2.c -------------------------------------------------------------------------------- /tests/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c -------------------------------------------------------------------------------- /tests/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c -------------------------------------------------------------------------------- /tests/unity/examples/example_2/test/test_runners/all_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_2/test/test_runners/all_tests.c -------------------------------------------------------------------------------- /tests/unity/examples/example_3/helper/UnityHelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_3/helper/UnityHelper.c -------------------------------------------------------------------------------- /tests/unity/examples/example_3/helper/UnityHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_3/helper/UnityHelper.h -------------------------------------------------------------------------------- /tests/unity/examples/example_3/rakefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_3/rakefile.rb -------------------------------------------------------------------------------- /tests/unity/examples/example_3/rakefile_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_3/rakefile_helper.rb -------------------------------------------------------------------------------- /tests/unity/examples/example_3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_3/readme.txt -------------------------------------------------------------------------------- /tests/unity/examples/example_3/src/ProductionCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_3/src/ProductionCode.c -------------------------------------------------------------------------------- /tests/unity/examples/example_3/src/ProductionCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_3/src/ProductionCode.h -------------------------------------------------------------------------------- /tests/unity/examples/example_3/src/ProductionCode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_3/src/ProductionCode2.c -------------------------------------------------------------------------------- /tests/unity/examples/example_3/src/ProductionCode2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_3/src/ProductionCode2.h -------------------------------------------------------------------------------- /tests/unity/examples/example_3/target_gcc_32.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_3/target_gcc_32.yml -------------------------------------------------------------------------------- /tests/unity/examples/example_3/test/TestProductionCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_3/test/TestProductionCode.c -------------------------------------------------------------------------------- /tests/unity/examples/example_3/test/TestProductionCode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/example_3/test/TestProductionCode2.c -------------------------------------------------------------------------------- /tests/unity/examples/unity_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/examples/unity_config.h -------------------------------------------------------------------------------- /tests/unity/extras/eclipse/error_parsers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/extras/eclipse/error_parsers.txt -------------------------------------------------------------------------------- /tests/unity/extras/fixture/rakefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/extras/fixture/rakefile.rb -------------------------------------------------------------------------------- /tests/unity/extras/fixture/rakefile_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/extras/fixture/rakefile_helper.rb -------------------------------------------------------------------------------- /tests/unity/extras/fixture/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/extras/fixture/readme.txt -------------------------------------------------------------------------------- /tests/unity/extras/fixture/src/unity_fixture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/extras/fixture/src/unity_fixture.c -------------------------------------------------------------------------------- /tests/unity/extras/fixture/src/unity_fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/extras/fixture/src/unity_fixture.h -------------------------------------------------------------------------------- /tests/unity/extras/fixture/src/unity_fixture_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/extras/fixture/src/unity_fixture_internals.h -------------------------------------------------------------------------------- /tests/unity/extras/fixture/src/unity_fixture_malloc_overrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/extras/fixture/src/unity_fixture_malloc_overrides.h -------------------------------------------------------------------------------- /tests/unity/extras/fixture/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/extras/fixture/test/Makefile -------------------------------------------------------------------------------- /tests/unity/extras/fixture/test/main/AllTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/extras/fixture/test/main/AllTests.c -------------------------------------------------------------------------------- /tests/unity/extras/fixture/test/template_fixture_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/extras/fixture/test/template_fixture_tests.c -------------------------------------------------------------------------------- /tests/unity/extras/fixture/test/unity_fixture_Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/extras/fixture/test/unity_fixture_Test.c -------------------------------------------------------------------------------- /tests/unity/extras/fixture/test/unity_fixture_TestRunner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/extras/fixture/test/unity_fixture_TestRunner.c -------------------------------------------------------------------------------- /tests/unity/extras/fixture/test/unity_output_Spy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/extras/fixture/test/unity_output_Spy.c -------------------------------------------------------------------------------- /tests/unity/extras/fixture/test/unity_output_Spy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/extras/fixture/test/unity_output_Spy.h -------------------------------------------------------------------------------- /tests/unity/release/build.info: -------------------------------------------------------------------------------- 1 | 122 2 | 3 | -------------------------------------------------------------------------------- /tests/unity/release/version.info: -------------------------------------------------------------------------------- 1 | 2.4.3 2 | 3 | -------------------------------------------------------------------------------- /tests/unity/src/unity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/src/unity.c -------------------------------------------------------------------------------- /tests/unity/src/unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/src/unity.h -------------------------------------------------------------------------------- /tests/unity/src/unity_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/src/unity_internals.h -------------------------------------------------------------------------------- /tests/unity/test/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/.rubocop.yml -------------------------------------------------------------------------------- /tests/unity/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/Makefile -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_cmd.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_def.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_head1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_head1.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_head1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_head1.h -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_mock_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_mock_cmd.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_mock_def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_mock_def.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_mock_head1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_mock_head1.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_mock_head1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_mock_head1.h -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_mock_new1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_mock_new1.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_mock_new2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_mock_new2.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_mock_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_mock_param.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_mock_run1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_mock_run1.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_mock_run2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_mock_run2.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_mock_yaml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_mock_yaml.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_new1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_new1.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_new2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_new2.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_param.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_run1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_run1.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_run2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_run2.c -------------------------------------------------------------------------------- /tests/unity/test/expectdata/testsample_yaml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/expectdata/testsample_yaml.c -------------------------------------------------------------------------------- /tests/unity/test/rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/rakefile -------------------------------------------------------------------------------- /tests/unity/test/rakefile_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/rakefile_helper.rb -------------------------------------------------------------------------------- /tests/unity/test/spec/generate_module_existing_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/spec/generate_module_existing_file_spec.rb -------------------------------------------------------------------------------- /tests/unity/test/targets/clang_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/targets/clang_file.yml -------------------------------------------------------------------------------- /tests/unity/test/targets/clang_strict.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/targets/clang_strict.yml -------------------------------------------------------------------------------- /tests/unity/test/targets/gcc_32.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/targets/gcc_32.yml -------------------------------------------------------------------------------- /tests/unity/test/targets/gcc_64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/targets/gcc_64.yml -------------------------------------------------------------------------------- /tests/unity/test/targets/gcc_auto_limits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/targets/gcc_auto_limits.yml -------------------------------------------------------------------------------- /tests/unity/test/targets/gcc_auto_stdint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/targets/gcc_auto_stdint.yml -------------------------------------------------------------------------------- /tests/unity/test/targets/gcc_manual_math.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/targets/gcc_manual_math.yml -------------------------------------------------------------------------------- /tests/unity/test/targets/hitech_picc18.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/targets/hitech_picc18.yml -------------------------------------------------------------------------------- /tests/unity/test/targets/iar_arm_v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/targets/iar_arm_v4.yml -------------------------------------------------------------------------------- /tests/unity/test/targets/iar_arm_v5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/targets/iar_arm_v5.yml -------------------------------------------------------------------------------- /tests/unity/test/targets/iar_arm_v5_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/targets/iar_arm_v5_3.yml -------------------------------------------------------------------------------- /tests/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml -------------------------------------------------------------------------------- /tests/unity/test/targets/iar_cortexm3_v5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/targets/iar_cortexm3_v5.yml -------------------------------------------------------------------------------- /tests/unity/test/targets/iar_msp430.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/targets/iar_msp430.yml -------------------------------------------------------------------------------- /tests/unity/test/targets/iar_sh2a_v6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/targets/iar_sh2a_v6.yml -------------------------------------------------------------------------------- /tests/unity/test/testdata/CException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/testdata/CException.h -------------------------------------------------------------------------------- /tests/unity/test/testdata/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/testdata/Defs.h -------------------------------------------------------------------------------- /tests/unity/test/testdata/cmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/testdata/cmock.h -------------------------------------------------------------------------------- /tests/unity/test/testdata/mockMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/testdata/mockMock.h -------------------------------------------------------------------------------- /tests/unity/test/testdata/testRunnerGenerator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/testdata/testRunnerGenerator.c -------------------------------------------------------------------------------- /tests/unity/test/testdata/testRunnerGeneratorSmall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/testdata/testRunnerGeneratorSmall.c -------------------------------------------------------------------------------- /tests/unity/test/testdata/testRunnerGeneratorWithMocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/testdata/testRunnerGeneratorWithMocks.c -------------------------------------------------------------------------------- /tests/unity/test/tests/test_generate_test_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/tests/test_generate_test_runner.rb -------------------------------------------------------------------------------- /tests/unity/test/tests/testparameterized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/tests/testparameterized.c -------------------------------------------------------------------------------- /tests/unity/test/tests/testunity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity/test/tests/testunity.c -------------------------------------------------------------------------------- /tests/unity_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveGamble/cJSON/HEAD/tests/unity_setup.c -------------------------------------------------------------------------------- /valgrind.supp: -------------------------------------------------------------------------------- 1 | { 2 | suppress_ld_on_armv7 3 | Memcheck:Cond 4 | ... 5 | obj:*/ld-*.so 6 | } 7 | --------------------------------------------------------------------------------