source: mainline/uspace/app/tester/tester.c@ 73401643

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 73401643 was 1433ecda, checked in by Jiri Svoboda <jiri@…>, 7 years ago

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

  • Property mode set to 100644
File size: 4.2 KB
RevLine 
[b2951e2]1/*
[df4ed85]2 * Copyright (c) 2006 Ondrej Palkovsky
[dd655970]3 * Copyright (c) 2007 Martin Decky
[b2951e2]4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * - Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * - The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
[2d11a7d8]30/** @addtogroup tester User space tester
31 * @brief User space testing infrastructure.
[b2951e2]32 * @{
[2d11a7d8]33 */
[b2951e2]34/**
35 * @file
36 */
37
[51dbadf3]38#include <stdio.h>
[582a0b8]39#include <stddef.h>
[19f857a]40#include <str.h>
[f47c70d4]41#include <io/log.h>
[dd655970]42#include "tester.h"
43
[2d11a7d8]44bool test_quiet;
45int test_argc;
46char **test_argv;
[dd655970]47
48test_t tests[] = {
49#include "thread/thread1.def"
[6a5b999]50#include "thread/setjmp1.def"
[dd655970]51#include "print/print1.def"
[2d11a7d8]52#include "print/print2.def"
53#include "print/print3.def"
[7a2c479]54#include "print/print4.def"
[855e0d8]55#include "print/print5.def"
[34b9299]56#include "print/print6.def"
[2d11a7d8]57#include "console/console1.def"
58#include "stdio/stdio1.def"
59#include "stdio/stdio2.def"
[f47c70d4]60#include "stdio/logger1.def"
[9a53e00]61#include "stdio/logger2.def"
[be66dee]62#include "fault/fault1.def"
63#include "fault/fault2.def"
[d91a20c]64#include "fault/fault3.def"
[b6636dc]65#include "float/float1.def"
[d9be488]66#include "float/float2.def"
[b6636dc]67#include "float/softfloat1.def"
[2d11a7d8]68#include "vfs/vfs1.def"
69#include "ipc/ping_pong.def"
[3191c01]70#include "ipc/starve.def"
[ce4a3dae]71#include "loop/loop1.def"
[2d11a7d8]72#include "mm/malloc1.def"
[9e953bda]73#include "mm/malloc2.def"
[013a5d7]74#include "mm/malloc3.def"
[b93d637]75#include "mm/mapping1.def"
[dd5f703]76#include "mm/pager1.def"
[ffdd2b9]77#include "hw/serial/serial1.def"
[57914494]78#include "chardev/chardev1.def"
[1433ecda]79 { NULL, NULL, NULL, false }
[dd655970]80};
81
82static bool run_test(test_t *test)
[51dbadf3]83{
[dd655970]84 /* Execute the test */
[a000878c]85 const char *ret = test->entry();
[a35b458]86
[dd655970]87 if (ret == NULL) {
[2d11a7d8]88 printf("\nTest passed\n");
[dd655970]89 return true;
[51dbadf3]90 }
[a35b458]91
[2d11a7d8]92 printf("\n%s\n", ret);
[dd655970]93 return false;
[51dbadf3]94}
95
[dd655970]96static void run_safe_tests(void)
[51dbadf3]97{
[047aa46]98 test_t *test;
[e190a89b]99 unsigned int i = 0;
100 unsigned int n = 0;
[a35b458]101
[e190a89b]102 printf("\n*** Running all safe tests ***\n\n");
[a35b458]103
[047aa46]104 for (test = tests; test->name != NULL; test++) {
105 if (test->safe) {
[2d11a7d8]106 printf("%s (%s)\n", test->name, test->desc);
[047aa46]107 if (run_test(test))
108 i++;
109 else
110 n++;
111 }
112 }
[a35b458]113
[2d11a7d8]114 printf("\nCompleted, %u tests run, %u passed.\n", i + n, i);
[51dbadf3]115}
116
[dd655970]117static void list_tests(void)
[51dbadf3]118{
[2d11a7d8]119 size_t len = 0;
[dd655970]120 test_t *test;
[2d11a7d8]121 for (test = tests; test->name != NULL; test++) {
122 if (str_length(test->name) > len)
123 len = str_length(test->name);
124 }
[a35b458]125
[855e0d8]126 unsigned int _len = (unsigned int) len;
127 if ((_len != len) || (((int) _len) < 0)) {
128 printf("Command length overflow\n");
129 return;
130 }
[a35b458]131
[2d11a7d8]132 for (test = tests; test->name != NULL; test++)
[855e0d8]133 printf("%-*s %s%s\n", _len, test->name, test->desc,
134 (test->safe ? "" : " (unsafe)"));
[a35b458]135
[855e0d8]136 printf("%-*s Run all safe tests\n", _len, "*");
[51dbadf3]137}
138
[2d11a7d8]139int main(int argc, char *argv[])
[51dbadf3]140{
[2d11a7d8]141 if (argc < 2) {
142 printf("Usage:\n\n");
143 printf("%s <test> [args ...]\n\n", argv[0]);
[dd655970]144 list_tests();
[2d11a7d8]145 return 0;
146 }
[a35b458]147
[267f235]148 log_init("tester");
[f47c70d4]149
[2d11a7d8]150 test_quiet = false;
151 test_argc = argc - 2;
152 test_argv = argv + 2;
[a35b458]153
[2d11a7d8]154 if (str_cmp(argv[1], "*") == 0) {
155 run_safe_tests();
156 return 0;
157 }
[a35b458]158
[2d11a7d8]159 test_t *test;
160 for (test = tests; test->name != NULL; test++) {
161 if (str_cmp(argv[1], test->name) == 0) {
162 return (run_test(test) ? 0 : -1);
[51b966b]163 }
[51dbadf3]164 }
[a35b458]165
[2d11a7d8]166 printf("Unknown test \"%s\"\n", argv[1]);
167 return -2;
[51dbadf3]168}
[b2951e2]169
170/** @}
171 */
Note: See TracBrowser for help on using the repository browser.