mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-03 04:34:31 +02:00
Merge branch 'bugfix/unity_error_codes_as_hex' into 'master'
unity: log error codes as hex See merge request !1166
This commit is contained in:
@@ -81,8 +81,8 @@ void unity_run_all_tests();
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// shorthand to check esp_err_t return code
|
// shorthand to check esp_err_t return code
|
||||||
#define TEST_ESP_OK(rc) TEST_ASSERT_EQUAL_INT32(ESP_OK, rc)
|
#define TEST_ESP_OK(rc) TEST_ASSERT_EQUAL_HEX32(ESP_OK, rc)
|
||||||
#define TEST_ESP_ERR(err, rc) TEST_ASSERT_EQUAL_INT32(err, rc)
|
#define TEST_ESP_ERR(err, rc) TEST_ASSERT_EQUAL_HEX32(err, rc)
|
||||||
|
|
||||||
|
|
||||||
#endif //UNITY_CONFIG_H
|
#endif //UNITY_CONFIG_H
|
||||||
|
Reference in New Issue
Block a user