diff options
author | Viktor Szépe <viktor@szepe.net> | 2023-11-10 15:37:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-10 15:37:23 +0100 |
commit | cc6581ae0320ae51f341519f17f770714b396cd1 (patch) | |
tree | 5c50f13495a3c190da0fc8b8bc34aeb73a6ce4e1 /tests/unity/unity.h | |
parent | df910893e4c0661358642047e223b23a3b438bee (diff) | |
download | lvgl-cc6581ae0320ae51f341519f17f770714b396cd1.tar.gz lvgl-cc6581ae0320ae51f341519f17f770714b396cd1.zip |
ci: upgrade astyle tool (#4776)
Install from source to use the latest version
Diffstat (limited to 'tests/unity/unity.h')
-rw-r--r-- | tests/unity/unity.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/unity/unity.h b/tests/unity/unity.h index bf8eceaea..3a6d15e62 100644 --- a/tests/unity/unity.h +++ b/tests/unity/unity.h @@ -286,7 +286,6 @@ void verifyTest(void); #define TEST_ASSERT_HEX64_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_HEX64_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL) #define TEST_ASSERT_CHAR_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_CHAR_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL) - /* Structs and Strings */ #define TEST_ASSERT_EQUAL_PTR(expected, actual) UNITY_TEST_ASSERT_EQUAL_PTR((expected), (actual), __LINE__, NULL) #define TEST_ASSERT_EQUAL_STRING(expected, actual) UNITY_TEST_ASSERT_EQUAL_STRING((expected), (actual), __LINE__, NULL) @@ -443,7 +442,6 @@ void verifyTest(void); #define TEST_ASSERT_NOT_EQUAL_HEX64_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_HEX64((threshold), (actual), __LINE__, (message)) #define TEST_ASSERT_NOT_EQUAL_CHAR_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_CHAR((threshold), (actual), __LINE__, (message)) - /* Integer Greater Than/ Less Than (of all sizes) */ #define TEST_ASSERT_GREATER_THAN_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_INT((threshold), (actual), __LINE__, (message)) #define TEST_ASSERT_GREATER_THAN_INT_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_INT((threshold), (actual), __LINE__, (message)) @@ -555,7 +553,6 @@ void verifyTest(void); #define TEST_ASSERT_HEX64_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_HEX64_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message)) #define TEST_ASSERT_CHAR_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_CHAR_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message)) - /* Structs and Strings */ #define TEST_ASSERT_EQUAL_PTR_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_PTR((expected), (actual), __LINE__, (message)) #define TEST_ASSERT_EQUAL_STRING_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_STRING((expected), (actual), __LINE__, (message)) @@ -662,7 +659,6 @@ void verifyTest(void); #endif #endif - #include "unity_support.h" #endif /*LV_BUILD_TEST*/ |