source: mainline/uspace/app/tester/tester.c@ 320c884

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 320c884 was 00acd66, checked in by Jakub Jermar <jakub@…>, 18 years ago

New, better-structured, directory layout for uspace.

  • Property mode set to 100644
File size: 3.0 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 "tester.h"
41
42int myservice = 0;
43int phones[MAX_PHONES];
44int connections[MAX_CONNECTIONS];
45ipc_callid_t callids[MAX_CONNECTIONS];
46
47test_t tests[] = {
48#include "thread/thread1.def"
49#include "print/print1.def"
50#include "fault/fault1.def"
51#include "fault/fault2.def"
52#include "ipc/register.def"
53#include "ipc/connect.def"
54#include "ipc/send_async.def"
55#include "ipc/send_sync.def"
56#include "ipc/answer.def"
57#include "ipc/hangup.def"
58 {NULL, NULL, NULL}
59};
60
61static bool run_test(test_t *test)
62{
63 printf("%s\t\t%s\n", test->name, test->desc);
64
65 /* Execute the test */
66 char * ret = test->entry(false);
67
68 if (ret == NULL) {
69 printf("Test passed\n\n");
70 return true;
71 }
72
73 printf("%s\n\n", ret);
74 return false;
75}
76
77static void run_safe_tests(void)
78{
79}
80
81static void list_tests(void)
82{
83 test_t *test;
84 char c = 'a';
85
86 for (test = tests; test->name != NULL; test++, c++)
87 printf("%c\t%s\t\t%s%s\n", c, test->name, test->desc, (test->safe ? "" : " (unsafe)"));
88
89 printf("*\t\t\tRun all safe tests\n");
90}
91
92int main(void)
93{
94 while (1) {
95 char c;
96 test_t *test;
97
98 list_tests();
99 printf("> ");
100
101 c = getchar();
102 printf("%c\n", c);
103
104 if ((c >= 'a') && (c <= 'z')) {
105 for (test = tests; test->name != NULL; test++, c--)
106 if (c == 'a')
107 break;
108
109 if (c > 'a')
110 printf("Unknown test\n\n");
111 else
112 run_test(test);
113 } else if (c == '*')
114 run_safe_tests();
115 else
116 printf("Invalid test\n\n");
117 }
118}
119
120/** @}
121 */
Note: See TracBrowser for help on using the repository browser.