diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-09-26 07:49:01 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-09-26 07:49:01 +0000 |
commit | 1d73f6b900a1a6f86e3304746f4856c7978bfbcb (patch) | |
tree | 881943506fb05e3e9d3a95b4bb3b0d3f4f75267b /test/rt/source | |
parent | d94025f99fd8665a79f1e670a9d77cdf50bfe0cb (diff) | |
download | ChibiOS-1d73f6b900a1a6f86e3304746f4856c7978bfbcb.tar.gz ChibiOS-1d73f6b900a1a6f86e3304746f4856c7978bfbcb.tar.bz2 ChibiOS-1d73f6b900a1a6f86e3304746f4856c7978bfbcb.zip |
Fixed some truncated strings.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12290 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'test/rt/source')
-rw-r--r-- | test/rt/source/test/rt_test_sequence_001.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/rt/source/test/rt_test_sequence_001.c b/test/rt/source/test/rt_test_sequence_001.c index 6f2b96f87..5565cf7ae 100644 --- a/test/rt/source/test/rt_test_sequence_001.c +++ b/test/rt/source/test/rt_test_sequence_001.c @@ -199,19 +199,19 @@ static void rt_test_001_003_execute(void) { test_print("--- CH_CFG_USE_SEMAPHORES: ");
test_printn(CH_CFG_USE_SEMAPHORES);
test_println("");
- test_print("--- CH_CFG_USE_SEMAPHORES_PRI: ");
+ test_print("--- CH_CFG_USE_SEMAPHORES_PRIORITY: ");
test_printn(CH_CFG_USE_SEMAPHORES_PRIORITY);
test_println("");
test_print("--- CH_CFG_USE_MUTEXES: ");
test_printn(CH_CFG_USE_MUTEXES);
test_println("");
- test_print("--- CH_CFG_USE_MUTEXES_RECURS: ");
+ test_print("--- CH_CFG_USE_MUTEXES_RECURSIVE: ");
test_printn(CH_CFG_USE_MUTEXES_RECURSIVE);
test_println("");
test_print("--- CH_CFG_USE_CONDVARS: ");
test_printn(CH_CFG_USE_CONDVARS);
test_println("");
- test_print("--- CH_CFG_USE_CONDVARS_TIMEO: ");
+ test_print("--- CH_CFG_USE_CONDVARS_TIMEOUT: ");
test_printn(CH_CFG_USE_CONDVARS_TIMEOUT);
test_println("");
test_print("--- CH_CFG_USE_EVENTS: ");
@@ -223,7 +223,7 @@ static void rt_test_001_003_execute(void) { test_print("--- CH_CFG_USE_MESSAGES: ");
test_printn(CH_CFG_USE_MESSAGES);
test_println("");
- test_print("--- CH_CFG_USE_MESSAGES_PRI: ");
+ test_print("--- CH_CFG_USE_MESSAGES_PRIORITY: ");
test_printn(CH_CFG_USE_MESSAGES_PRIORITY);
test_println("");
test_print("--- CH_CFG_USE_MAILBOXES: ");
|