Subversion Repositories HelenOS

Rev

Rev 4348 | 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"
4348 svoboda 50
#include "print/print4.def"
2193 decky 51
#include "fault/fault1.def"
52
#include "fault/fault2.def"
2188 decky 53
#include "ipc/register.def"
54
#include "ipc/connect.def"
2193 decky 55
#include "ipc/send_async.def"
56
#include "ipc/send_sync.def"
57
#include "ipc/answer.def"
58
#include "ipc/hangup.def"
4389 svoboda 59
#include "ipc/ping_pong.def"
2594 cejka 60
#include "devmap/devmap1.def"
3674 svoboda 61
#include "loop/loop1.def"
2656 jermar 62
#include "vfs/vfs1.def"
4338 svoboda 63
#include "console/console1.def"
64
#include "stdio/stdio1.def"
65
#include "stdio/stdio2.def"
2188 decky 66
    {NULL, NULL, NULL}
67
};
1596 palkovsky 68
 
2188 decky 69
static bool run_test(test_t *test)
1596 palkovsky 70
{
2188 decky 71
    printf("%s\t\t%s\n", test->name, test->desc);
1596 palkovsky 72
 
2188 decky 73
    /* Execute the test */
74
    char * ret = test->entry(false);
75
 
76
    if (ret == NULL) {
77
        printf("Test passed\n\n");
78
        return true;
1596 palkovsky 79
    }
80
 
2188 decky 81
    printf("%s\n\n", ret);
82
    return false;
1596 palkovsky 83
}
84
 
2188 decky 85
static void run_safe_tests(void)
1596 palkovsky 86
{
2785 jermar 87
    test_t *test;
2786 decky 88
    unsigned int i = 0;
89
    unsigned int n = 0;
2785 jermar 90
 
2786 decky 91
    printf("\n*** Running all safe tests ***\n\n");
2785 jermar 92
 
93
    for (test = tests; test->name != NULL; test++) {
94
        if (test->safe) {
95
            if (run_test(test))
96
                i++;
97
            else
98
                n++;
99
        }
100
    }
101
 
2786 decky 102
    printf("\nSafe tests completed, %u tests run, %u passed.\n\n", i + n, i);
1596 palkovsky 103
}
104
 
2188 decky 105
static void list_tests(void)
1596 palkovsky 106
{
2188 decky 107
    test_t *test;
108
    char c = 'a';
1596 palkovsky 109
 
2188 decky 110
    for (test = tests; test->name != NULL; test++, c++)
111
        printf("%c\t%s\t\t%s%s\n", c, test->name, test->desc, (test->safe ? "" : " (unsafe)"));
1596 palkovsky 112
 
2188 decky 113
    printf("*\t\t\tRun all safe tests\n");
1596 palkovsky 114
}
115
 
3174 svoboda 116
int main(int argc, char **argv)
1596 palkovsky 117
{
3174 svoboda 118
    printf("Number of arguments: %d\n", argc);
119
    if (argv) {
120
        printf("Arguments:");
121
        while (*argv) {
122
            printf(" '%s'", *argv++);
123
        }
124
        printf("\n");
125
    }
126
 
1596 palkovsky 127
    while (1) {
2188 decky 128
        char c;
129
        test_t *test;
130
 
131
        list_tests();
132
        printf("> ");
133
 
1596 palkovsky 134
        c = getchar();
2188 decky 135
        printf("%c\n", c);
136
 
137
        if ((c >= 'a') && (c <= 'z')) {
138
            for (test = tests; test->name != NULL; test++, c--)
139
                if (c == 'a')
140
                    break;
141
 
3448 svoboda 142
            if (test->name == NULL)
2188 decky 143
                printf("Unknown test\n\n");
144
            else
145
                run_test(test);
3153 svoboda 146
        } else if (c == '*') {
2188 decky 147
            run_safe_tests();
3153 svoboda 148
        } else if (c < 0) {
149
            /* got EOF */
150
            break;
151
        } else {
2188 decky 152
            printf("Invalid test\n\n");
3153 svoboda 153
        }
154
 
1596 palkovsky 155
    }
3535 svoboda 156
 
157
    return 0;
1596 palkovsky 158
}
1653 cejka 159
 
160
/** @}
161
 */