source: mainline/uspace/app/tester/tester.c@ 6a5b999

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 6a5b999 was 6a5b999, checked in by Vojtech Horky <vojtechhorky@…>, 12 years ago

Add basic test for setjmp/longjmp functions

Following profiles were tested in simulators and appears to work:
amd64, ia32, arm32/integratorcp, mips32/msim and ppc32.

  • Property mode set to 100644
File size: 4.2 KB
Line 
1/*
2 * Copyright (c) 2006 Ondrej Palkovsky
3 * Copyright (c) 2007 Martin Decky
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
30/** @addtogroup tester User space tester
31 * @brief User space testing infrastructure.
32 * @{
33 */
34/**
35 * @file
36 */
37
38#include <unistd.h>
39#include <stdio.h>
40#include <str.h>
41#include <io/log.h>
42#include "tester.h"
43
44bool test_quiet;
45int test_argc;
46char **test_argv;
47
48test_t tests[] = {
49#include "thread/thread1.def"
50#include "thread/setjmp1.def"
51#include "print/print1.def"
52#include "print/print2.def"
53#include "print/print3.def"
54#include "print/print4.def"
55#include "print/print5.def"
56#include "print/print6.def"
57#include "console/console1.def"
58#include "stdio/stdio1.def"
59#include "stdio/stdio2.def"
60#include "stdio/logger1.def"
61#include "stdio/logger2.def"
62#include "fault/fault1.def"
63#include "fault/fault2.def"
64#include "fault/fault3.def"
65#include "float/float1.def"
66#include "float/softfloat1.def"
67#include "vfs/vfs1.def"
68#include "ipc/ping_pong.def"
69#include "ipc/starve.def"
70#include "loop/loop1.def"
71#include "mm/malloc1.def"
72#include "mm/malloc2.def"
73#include "mm/malloc3.def"
74#include "mm/mapping1.def"
75#include "hw/serial/serial1.def"
76#include "hw/misc/virtchar1.def"
77 {NULL, NULL, NULL, false}
78};
79
80static bool run_test(test_t *test)
81{
82 /* Execute the test */
83 const char *ret = test->entry();
84
85 if (ret == NULL) {
86 printf("\nTest passed\n");
87 return true;
88 }
89
90 printf("\n%s\n", ret);
91 return false;
92}
93
94static void run_safe_tests(void)
95{
96 test_t *test;
97 unsigned int i = 0;
98 unsigned int n = 0;
99
100 printf("\n*** Running all safe tests ***\n\n");
101
102 for (test = tests; test->name != NULL; test++) {
103 if (test->safe) {
104 printf("%s (%s)\n", test->name, test->desc);
105 if (run_test(test))
106 i++;
107 else
108 n++;
109 }
110 }
111
112 printf("\nCompleted, %u tests run, %u passed.\n", i + n, i);
113}
114
115static void list_tests(void)
116{
117 size_t len = 0;
118 test_t *test;
119 for (test = tests; test->name != NULL; test++) {
120 if (str_length(test->name) > len)
121 len = str_length(test->name);
122 }
123
124 unsigned int _len = (unsigned int) len;
125 if ((_len != len) || (((int) _len) < 0)) {
126 printf("Command length overflow\n");
127 return;
128 }
129
130 for (test = tests; test->name != NULL; test++)
131 printf("%-*s %s%s\n", _len, test->name, test->desc,
132 (test->safe ? "" : " (unsafe)"));
133
134 printf("%-*s Run all safe tests\n", _len, "*");
135}
136
137int main(int argc, char *argv[])
138{
139 if (argc < 2) {
140 printf("Usage:\n\n");
141 printf("%s <test> [args ...]\n\n", argv[0]);
142 list_tests();
143 return 0;
144 }
145
146 log_init("tester");
147
148 test_quiet = false;
149 test_argc = argc - 2;
150 test_argv = argv + 2;
151
152 if (str_cmp(argv[1], "*") == 0) {
153 run_safe_tests();
154 return 0;
155 }
156
157 test_t *test;
158 for (test = tests; test->name != NULL; test++) {
159 if (str_cmp(argv[1], test->name) == 0) {
160 return (run_test(test) ? 0 : -1);
161 }
162 }
163
164 printf("Unknown test \"%s\"\n", argv[1]);
165 return -2;
166}
167
168/** @}
169 */
Note: See TracBrowser for help on using the repository browser.