Rev 2925 | Rev 3425 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1653 | cejka | 1 | /* |
2071 | jermar | 2 | * Copyright (c) 2006 Ondrej Palkovsky |
2188 | decky | 3 | * Copyright (c) 2007 Martin Decky |
1653 | cejka | 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 | |||
2188 | decky | 30 | /** @addtogroup tester User space Tester |
31 | * @brief User space testing infrastructure. |
||
1653 | cejka | 32 | * @{ |
33 | */ |
||
34 | /** |
||
35 | * @file |
||
36 | */ |
||
37 | |||
2188 | decky | 38 | #include <unistd.h> |
1596 | palkovsky | 39 | #include <stdio.h> |
2188 | decky | 40 | #include "tester.h" |
1596 | palkovsky | 41 | |
2188 | decky | 42 | int myservice = 0; |
43 | int phones[MAX_PHONES]; |
||
44 | int connections[MAX_CONNECTIONS]; |
||
45 | ipc_callid_t callids[MAX_CONNECTIONS]; |
||
1596 | palkovsky | 46 | |
2188 | decky | 47 | test_t tests[] = { |
48 | #include "thread/thread1.def" |
||
49 | #include "print/print1.def" |
||
2193 | decky | 50 | #include "fault/fault1.def" |
51 | #include "fault/fault2.def" |
||
2188 | decky | 52 | #include "ipc/register.def" |
53 | #include "ipc/connect.def" |
||
2193 | decky | 54 | #include "ipc/send_async.def" |
55 | #include "ipc/send_sync.def" |
||
56 | #include "ipc/answer.def" |
||
57 | #include "ipc/hangup.def" |
||
2594 | cejka | 58 | #include "devmap/devmap1.def" |
2656 | jermar | 59 | #include "vfs/vfs1.def" |
2801 | svoboda | 60 | #include "debug/debug1.def" |
2188 | decky | 61 | {NULL, NULL, NULL} |
62 | }; |
||
1596 | palkovsky | 63 | |
2188 | decky | 64 | static bool run_test(test_t *test) |
1596 | palkovsky | 65 | { |
2188 | decky | 66 | printf("%s\t\t%s\n", test->name, test->desc); |
1596 | palkovsky | 67 | |
2188 | decky | 68 | /* Execute the test */ |
69 | char * ret = test->entry(false); |
||
70 | |||
71 | if (ret == NULL) { |
||
72 | printf("Test passed\n\n"); |
||
73 | return true; |
||
1596 | palkovsky | 74 | } |
75 | |||
2188 | decky | 76 | printf("%s\n\n", ret); |
77 | return false; |
||
1596 | palkovsky | 78 | } |
79 | |||
2188 | decky | 80 | static void run_safe_tests(void) |
1596 | palkovsky | 81 | { |
2785 | jermar | 82 | test_t *test; |
2925 | svoboda | 83 | unsigned int i = 0; |
84 | unsigned int n = 0; |
||
2785 | jermar | 85 | |
2925 | svoboda | 86 | printf("\n*** Running all safe tests ***\n\n"); |
2785 | jermar | 87 | |
88 | for (test = tests; test->name != NULL; test++) { |
||
89 | if (test->safe) { |
||
90 | if (run_test(test)) |
||
91 | i++; |
||
92 | else |
||
93 | n++; |
||
94 | } |
||
95 | } |
||
96 | |||
2925 | svoboda | 97 | printf("\nSafe tests completed, %u tests run, %u passed.\n\n", i + n, i); |
1596 | palkovsky | 98 | } |
99 | |||
2188 | decky | 100 | static void list_tests(void) |
1596 | palkovsky | 101 | { |
2188 | decky | 102 | test_t *test; |
103 | char c = 'a'; |
||
1596 | palkovsky | 104 | |
2188 | decky | 105 | for (test = tests; test->name != NULL; test++, c++) |
106 | printf("%c\t%s\t\t%s%s\n", c, test->name, test->desc, (test->safe ? "" : " (unsafe)")); |
||
1596 | palkovsky | 107 | |
2188 | decky | 108 | printf("*\t\t\tRun all safe tests\n"); |
1596 | palkovsky | 109 | } |
110 | |||
111 | int main(void) |
||
112 | { |
||
113 | while (1) { |
||
2188 | decky | 114 | char c; |
115 | test_t *test; |
||
116 | |||
117 | list_tests(); |
||
118 | printf("> "); |
||
119 | |||
1596 | palkovsky | 120 | c = getchar(); |
2188 | decky | 121 | printf("%c\n", c); |
122 | |||
123 | if ((c >= 'a') && (c <= 'z')) { |
||
124 | for (test = tests; test->name != NULL; test++, c--) |
||
125 | if (c == 'a') |
||
126 | break; |
||
127 | |||
128 | if (c > 'a') |
||
129 | printf("Unknown test\n\n"); |
||
130 | else |
||
131 | run_test(test); |
||
3424 | svoboda | 132 | } else if (c == '*') { |
2188 | decky | 133 | run_safe_tests(); |
3424 | svoboda | 134 | } else if (c < 0) { |
135 | /* got EOF */ |
||
136 | break; |
||
137 | } else { |
||
2188 | decky | 138 | printf("Invalid test\n\n"); |
3424 | svoboda | 139 | } |
140 | |||
1596 | palkovsky | 141 | } |
142 | } |
||
1653 | cejka | 143 | |
144 | /** @} |
||
145 | */ |