Skip to content

Commit

Permalink
Update thirdparty submodule (#48)
Browse files Browse the repository at this point in the history
* Update integration test to 202406.00 version

* Update for uncrustify

* Update uncrustify again

* Update thirdParty submodule pointer

* Update lwip, mbedtls and unity submodule pointer

* Revert lwip to version STABLE-2_1_2_RELEASE
  • Loading branch information
chinglee-iot authored Jul 8, 2024
1 parent 493e477 commit 57bd3d2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Middleware/mbedtls
2 changes: 1 addition & 1 deletion Middleware/unity
Submodule unity updated 62 files
+4 −1 .github/workflows/main.yml
+6 −0 .gitignore
+1 −0 CMakeLists.txt
+1 −1 LICENSE.txt
+33 −5 README.md
+0 −0 auto/__init__.py
+1 −1 auto/colour_reporter.rb
+15 −0 auto/extract_version.py
+22 −18 auto/generate_module.rb
+54 −27 auto/generate_test_runner.rb
+83 −22 auto/parse_output.rb
+54 −39 auto/stylize_as_junit.py
+1 −1 auto/stylize_as_junit.rb
+5 −3 auto/test_file_filter.rb
+1 −1 auto/type_sanitizer.rb
+7 −3 auto/unity_test_summary.rb
+22 −0 auto/yaml_helper.rb
+18 −0 docs/MesonGeneratorRunner.md
+133 −60 docs/UnityAssertionsReference.md
+93 −0 docs/UnityChangeLog.md
+150 −1 docs/UnityConfigurationGuide.md
+289 −1 docs/UnityHelperScriptsGuide.md
+13 −0 docs/UnityKnownIssues.md
+48 −0 examples/example_1/meson.build
+8 −1 examples/example_1/readme.txt
+3 −0 examples/example_1/subprojects/unity.wrap
+25 −21 examples/example_3/rakefile_helper.rb
+2 −2 examples/example_4/meson.build
+3 −1 examples/example_4/subprojects/unity.wrap
+3 −3 examples/example_4/test/test_runners/meson.build
+40 −0 extras/bdd/readme.md
+44 −0 extras/bdd/src/unity_bdd.h
+9 −0 extras/bdd/test/meson.build
+128 −0 extras/bdd/test/test_bdd.c
+1 −1 extras/fixture/readme.md
+10 −0 extras/fixture/src/meson.build
+9 −0 extras/memory/src/meson.build
+18 −0 library.json
+71 −5 meson.build
+3 −0 meson_options.txt
+17 −0 platformio-build.py
+11 −5 src/meson.build
+479 −111 src/unity.c
+43 −7 src/unity.h
+147 −31 src/unity_internals.h
+6 −4 test/.rubocop.yml
+3 −3 test/rakefile_helper.rb
+1 −0 test/targets/clang_strict.yml
+1 −0 test/testdata/Defs.h
+11 −3 test/testdata/testRunnerGenerator.c
+1 −5 test/testdata/testRunnerGeneratorSmall.c
+0 −4 test/testdata/testRunnerGeneratorWithMocks.c
+40 −2 test/tests/test_generate_test_runner.rb
+67 −1 test/tests/test_unity_arrays.c
+1 −1 test/tests/test_unity_core.c
+511 −0 test/tests/test_unity_doubles.c
+510 −0 test/tests/test_unity_floats.c
+15 −0 test/tests/test_unity_integers.c
+10 −1 test/tests/test_unity_integers_64.c
+140 −3 test/tests/test_unity_parameterized.c
+21 −0 test/tests/test_unity_parameterizedDemo.c
+14 −0 test/tests/types_for_test.h
4 changes: 2 additions & 2 deletions manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ dependencies:
url: "https://github.com/lwip-tcpip/lwip.git"
path: "Middleware/lwip"
- name: "mbedtls"
version: "v2.26.0"
version: "v2.28.8"
repository:
type: "git"
url: "https://github.com/Mbed-TLS/mbedtls.git"
Expand All @@ -82,7 +82,7 @@ dependencies:
url: "https://github.com/intel/tinycbor.git"
path: "Middleware/tinycbor"
- name: "unity"
version: "db878ccaedaea3d07b3c5443a00d131ecacd30b3"
version: "v2.6.0"
repository:
type: "git"
url: "https://github.com/ThrowTheSwitch/Unity.git"
Expand Down

0 comments on commit 57bd3d2

Please sign in to comment.