aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-04-25 15:12:34 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-04-25 15:12:34 +0000
commit40db2266808fdca55abf8ce41b4af25b39d66688 (patch)
treebc3c849d89f3704b235109f5f76c4c8aeb3fa98e
parent7a1b60e3317bf693d4ae45f5ce8d4a5c047d14aa (diff)
downloadChibiOS-40db2266808fdca55abf8ce41b4af25b39d66688.tar.gz
ChibiOS-40db2266808fdca55abf8ce41b4af25b39d66688.tar.bz2
ChibiOS-40db2266808fdca55abf8ce41b4af25b39d66688.zip
Fixed bug 2781176.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@921 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--readme.txt1
-rw-r--r--test/test.h2
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; \
}