aboutsummaryrefslogtreecommitdiffstats
path: root/test/testmsg.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-06-15 11:34:16 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-06-15 11:34:16 +0000
commita544f87a38e6f0b4b60113dbec8352d5f6c04104 (patch)
treeeb09ecf7b7ed53ce3ec47a7be96d3307f3e2732c /test/testmsg.c
parenteee0672c0a2da8eae066ca32ac19fa6f974876bb (diff)
downloadChibiOS-a544f87a38e6f0b4b60113dbec8352d5f6c04104.tar.gz
ChibiOS-a544f87a38e6f0b4b60113dbec8352d5f6c04104.tar.bz2
ChibiOS-a544f87a38e6f0b4b60113dbec8352d5f6c04104.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2020 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/testmsg.c')
-rw-r--r--test/testmsg.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/testmsg.c b/test/testmsg.c
index 3757f1de9..5db9614bb 100644
--- a/test/testmsg.c
+++ b/test/testmsg.c
@@ -59,11 +59,6 @@
* not find a fifth message waiting.
*/
-static char *msg1_gettest(void) {
-
- return "Messages, loop";
-}
-
static msg_t thread(void *p) {
chMsgSend(p, 'A');
@@ -107,7 +102,7 @@ static void msg1_execute(void) {
}
const struct testcase testmsg1 = {
- msg1_gettest,
+ "Messages, loop",
NULL,
NULL,
msg1_execute