diff options
-rw-r--r-- | readme.txt | 1 | ||||
-rw-r--r-- | test/test.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/readme.txt b/readme.txt index dff88063a..0b1b066a9 100644 --- a/readme.txt +++ b/readme.txt @@ -87,6 +87,7 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process, stable branch).
- FIX: Found new instances of the obsolete function chSysGetTime() in the
C++ wrapper and in the WEB demo (bug 2772237)(backported in stable branch).
+- FIX: Fixed macro in test.h (bug 2781176)(backported in stable branch).
- NEW: Added a code coverage analysis application under ./tests/coverage.
- NEW: Added more test cases in order to improve the test suite code coverage
(it was 74% in version 1.2.0).
diff --git a/test/test.h b/test/test.h index d1deaf687..c74610c95 100644 --- a/test/test.h +++ b/test/test.h @@ -72,7 +72,7 @@ extern "C" { #endif
#define test_fail(point) { \
- test_fail(point); \
+ _test_fail(point); \
return; \
}
|