| [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 |
|
|---|
| [dd655970] | 38 | #include <unistd.h>
|
|---|
| [51dbadf3] | 39 | #include <stdio.h>
|
|---|
| [19f857a] | 40 | #include <str.h>
|
|---|
| [f47c70d4] | 41 | #include <io/log.h>
|
|---|
| [dd655970] | 42 | #include "tester.h"
|
|---|
| 43 |
|
|---|
| [2d11a7d8] | 44 | bool test_quiet;
|
|---|
| 45 | int test_argc;
|
|---|
| 46 | char **test_argv;
|
|---|
| [dd655970] | 47 |
|
|---|
| 48 | test_t tests[] = {
|
|---|
| 49 | #include "thread/thread1.def"
|
|---|
| 50 | #include "print/print1.def"
|
|---|
| [2d11a7d8] | 51 | #include "print/print2.def"
|
|---|
| 52 | #include "print/print3.def"
|
|---|
| [7a2c479] | 53 | #include "print/print4.def"
|
|---|
| [855e0d8] | 54 | #include "print/print5.def"
|
|---|
| [34b9299] | 55 | #include "print/print6.def"
|
|---|
| [2d11a7d8] | 56 | #include "console/console1.def"
|
|---|
| 57 | #include "stdio/stdio1.def"
|
|---|
| 58 | #include "stdio/stdio2.def"
|
|---|
| [f47c70d4] | 59 | #include "stdio/logger1.def"
|
|---|
| [9a53e00] | 60 | #include "stdio/logger2.def"
|
|---|
| [be66dee] | 61 | #include "fault/fault1.def"
|
|---|
| 62 | #include "fault/fault2.def"
|
|---|
| [d91a20c] | 63 | #include "fault/fault3.def"
|
|---|
| [b6636dc] | 64 | #include "float/float1.def"
|
|---|
| 65 | #include "float/softfloat1.def"
|
|---|
| [2d11a7d8] | 66 | #include "vfs/vfs1.def"
|
|---|
| 67 | #include "ipc/ping_pong.def"
|
|---|
| [3191c01] | 68 | #include "ipc/starve.def"
|
|---|
| [ce4a3dae] | 69 | #include "loop/loop1.def"
|
|---|
| [2d11a7d8] | 70 | #include "mm/malloc1.def"
|
|---|
| [9e953bda] | 71 | #include "mm/malloc2.def"
|
|---|
| [013a5d7] | 72 | #include "mm/malloc3.def"
|
|---|
| [b93d637] | 73 | #include "mm/mapping1.def"
|
|---|
| [ffdd2b9] | 74 | #include "hw/serial/serial1.def"
|
|---|
| [424558a] | 75 | #include "hw/misc/virtchar1.def"
|
|---|
| [2d11a7d8] | 76 | {NULL, NULL, NULL, false}
|
|---|
| [dd655970] | 77 | };
|
|---|
| 78 |
|
|---|
| 79 | static bool run_test(test_t *test)
|
|---|
| [51dbadf3] | 80 | {
|
|---|
| [dd655970] | 81 | /* Execute the test */
|
|---|
| [a000878c] | 82 | const char *ret = test->entry();
|
|---|
| [dd655970] | 83 |
|
|---|
| 84 | if (ret == NULL) {
|
|---|
| [2d11a7d8] | 85 | printf("\nTest passed\n");
|
|---|
| [dd655970] | 86 | return true;
|
|---|
| [51dbadf3] | 87 | }
|
|---|
| [2d11a7d8] | 88 |
|
|---|
| 89 | printf("\n%s\n", ret);
|
|---|
| [dd655970] | 90 | return false;
|
|---|
| [51dbadf3] | 91 | }
|
|---|
| 92 |
|
|---|
| [dd655970] | 93 | static void run_safe_tests(void)
|
|---|
| [51dbadf3] | 94 | {
|
|---|
| [047aa46] | 95 | test_t *test;
|
|---|
| [e190a89b] | 96 | unsigned int i = 0;
|
|---|
| 97 | unsigned int n = 0;
|
|---|
| [2d11a7d8] | 98 |
|
|---|
| [e190a89b] | 99 | printf("\n*** Running all safe tests ***\n\n");
|
|---|
| [2d11a7d8] | 100 |
|
|---|
| [047aa46] | 101 | for (test = tests; test->name != NULL; test++) {
|
|---|
| 102 | if (test->safe) {
|
|---|
| [2d11a7d8] | 103 | printf("%s (%s)\n", test->name, test->desc);
|
|---|
| [047aa46] | 104 | if (run_test(test))
|
|---|
| 105 | i++;
|
|---|
| 106 | else
|
|---|
| 107 | n++;
|
|---|
| 108 | }
|
|---|
| 109 | }
|
|---|
| [2d11a7d8] | 110 |
|
|---|
| 111 | printf("\nCompleted, %u tests run, %u passed.\n", i + n, i);
|
|---|
| [51dbadf3] | 112 | }
|
|---|
| 113 |
|
|---|
| [dd655970] | 114 | static void list_tests(void)
|
|---|
| [51dbadf3] | 115 | {
|
|---|
| [2d11a7d8] | 116 | size_t len = 0;
|
|---|
| [dd655970] | 117 | test_t *test;
|
|---|
| [2d11a7d8] | 118 | for (test = tests; test->name != NULL; test++) {
|
|---|
| 119 | if (str_length(test->name) > len)
|
|---|
| 120 | len = str_length(test->name);
|
|---|
| 121 | }
|
|---|
| [51dbadf3] | 122 |
|
|---|
| [855e0d8] | 123 | unsigned int _len = (unsigned int) len;
|
|---|
| 124 | if ((_len != len) || (((int) _len) < 0)) {
|
|---|
| 125 | printf("Command length overflow\n");
|
|---|
| 126 | return;
|
|---|
| 127 | }
|
|---|
| 128 |
|
|---|
| [2d11a7d8] | 129 | for (test = tests; test->name != NULL; test++)
|
|---|
| [855e0d8] | 130 | printf("%-*s %s%s\n", _len, test->name, test->desc,
|
|---|
| 131 | (test->safe ? "" : " (unsafe)"));
|
|---|
| [51dbadf3] | 132 |
|
|---|
| [855e0d8] | 133 | printf("%-*s Run all safe tests\n", _len, "*");
|
|---|
| [51dbadf3] | 134 | }
|
|---|
| 135 |
|
|---|
| [2d11a7d8] | 136 | int main(int argc, char *argv[])
|
|---|
| [51dbadf3] | 137 | {
|
|---|
| [2d11a7d8] | 138 | if (argc < 2) {
|
|---|
| 139 | printf("Usage:\n\n");
|
|---|
| 140 | printf("%s <test> [args ...]\n\n", argv[0]);
|
|---|
| [dd655970] | 141 | list_tests();
|
|---|
| [2d11a7d8] | 142 | return 0;
|
|---|
| 143 | }
|
|---|
| 144 |
|
|---|
| [267f235] | 145 | log_init("tester");
|
|---|
| [f47c70d4] | 146 |
|
|---|
| [2d11a7d8] | 147 | test_quiet = false;
|
|---|
| 148 | test_argc = argc - 2;
|
|---|
| 149 | test_argv = argv + 2;
|
|---|
| 150 |
|
|---|
| 151 | if (str_cmp(argv[1], "*") == 0) {
|
|---|
| 152 | run_safe_tests();
|
|---|
| 153 | return 0;
|
|---|
| 154 | }
|
|---|
| 155 |
|
|---|
| 156 | test_t *test;
|
|---|
| 157 | for (test = tests; test->name != NULL; test++) {
|
|---|
| 158 | if (str_cmp(argv[1], test->name) == 0) {
|
|---|
| 159 | return (run_test(test) ? 0 : -1);
|
|---|
| [51b966b] | 160 | }
|
|---|
| [51dbadf3] | 161 | }
|
|---|
| [2d11a7d8] | 162 |
|
|---|
| 163 | printf("Unknown test \"%s\"\n", argv[1]);
|
|---|
| 164 | return -2;
|
|---|
| [51dbadf3] | 165 | }
|
|---|
| [b2951e2] | 166 |
|
|---|
| 167 | /** @}
|
|---|
| 168 | */
|
|---|