Fixed bug 2781176.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@921 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2009-04-25 15:12:34 +00:00
parent 7a1b60e331
commit 40db226680
2 changed files with 2 additions and 1 deletions

View File

@ -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).

View File

@ -72,7 +72,7 @@ extern "C" {
#endif
#define test_fail(point) { \
test_fail(point); \
_test_fail(point); \
return; \
}