aboutsummaryrefslogtreecommitdiffstats
path: root/os/various/shell
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2017-11-04 14:51:30 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2017-11-04 14:51:30 +0000
commit981e11216a3e1534a403c6844b06f164480c3ff9 (patch)
treec2535aec07c15929e8827414ad1aed2153588e20 /os/various/shell
parenta4b5f16690659eb74f83392cc336038c00c36fd1 (diff)
downloadChibiOS-981e11216a3e1534a403c6844b06f164480c3ff9.tar.gz
ChibiOS-981e11216a3e1534a403c6844b06f164480c3ff9.tar.bz2
ChibiOS-981e11216a3e1534a403c6844b06f164480c3ff9.zip
Various fixes after recent changes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10934 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/various/shell')
-rw-r--r--os/various/shell/shell_cmd.c28
1 files changed, 25 insertions, 3 deletions
diff --git a/os/various/shell/shell_cmd.c b/os/various/shell/shell_cmd.c
index cf350ff4d..63a433e0c 100644
--- a/os/various/shell/shell_cmd.c
+++ b/os/various/shell/shell_cmd.c
@@ -32,6 +32,7 @@
#if (SHELL_CMD_TEST_ENABLED == TRUE) || defined(__DOXYGEN__)
#include "rt_test_root.h"
+#include "oslib_test_root.h"
#endif
/*===========================================================================*/
@@ -171,17 +172,38 @@ static void cmd_threads(BaseSequentialStream *chp, int argc, char *argv[]) {
#endif
#if (SHELL_CMD_TEST_ENABLED == TRUE) || defined(__DOXYGEN__)
+static THD_FUNCTION(test_rt, arg) {
+ BaseSequentialStream *chp = (BaseSequentialStream *)arg;
+ test_execute(chp, &rt_test_suite);
+}
+
+static THD_FUNCTION(test_oslib, arg) {
+ BaseSequentialStream *chp = (BaseSequentialStream *)arg;
+ test_execute(chp, &oslib_test_suite);
+}
+
static void cmd_test(BaseSequentialStream *chp, int argc, char *argv[]) {
thread_t *tp;
+ tfunc_t tfp;
(void)argv;
- if (argc > 0) {
- shellUsage(chp, "test");
+ if (argc != 1) {
+ shellUsage(chp, "test rt|oslib");
+ return;
+ }
+ if (!strcmp(argv[0], "rt")) {
+ tfp = test_rt;
+ }
+ else if (!strcmp(argv[0], "oslib")) {
+ tfp = test_oslib;
+ }
+ else {
+ shellUsage(chp, "test rt|oslib");
return;
}
tp = chThdCreateFromHeap(NULL, SHELL_CMD_TEST_WA_SIZE,
"test", chThdGetPriorityX(),
- (tfunc_t)test_execute, chp);
+ tfp, chp);
if (tp == NULL) {
chprintf(chp, "out of memory"SHELL_NEWLINE_STR);
return;