Changeset e190a89b in mainline


Ignore:
Timestamp:
2008-03-27T13:56:21Z (17 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2f60a529
Parents:
047aa46
Message:

revision of 2785

Location:
uspace/app/tester
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tester/ipc/connect.c

    r047aa46 re190a89b  
    3737        int phid;
    3838
    39         printf("Choose one service: 0:10000....9:10009 (Q to skip)\n");
     39        printf("Choose one service: 0:10000....9:10009 (q to skip)\n");
    4040        do {
    4141                c = getchar();
    42                 if (c == 'Q' || c == 'q')
     42                if ((c == 'Q') || (c == 'q'))
    4343                        return TEST_SKIPPED;
    4444        } while (c < '0' || c > '9');
  • uspace/app/tester/ipc/hangup.c

    r047aa46 re190a89b  
    3838        int phoneid;
    3939
    40         printf("Select phoneid to hangup: 2-9 (Q to skip)\n");
     40        printf("Select phoneid to hangup: 2-9 (q to skip)\n");
    4141        do {
    4242                c = getchar();
    43                 if (c == 'Q' || c == 'q')
     43                if ((c == 'Q') || (c == 'q'))
    4444                        return TEST_SKIPPED;
    4545        } while (c < '2' || c > '9');
  • uspace/app/tester/ipc/send_async.c

    r047aa46 re190a89b  
    4242        char c;
    4343
    44         printf("Select phoneid to send msg: 2-9 (Q to skip)\n");
     44        printf("Select phoneid to send msg: 2-9 (q to skip)\n");
    4545        do {
    4646                c = getchar();
    47                 if (c == 'Q' || c == 'q')
     47                if ((c == 'Q') || (c == 'q'))
    4848                        return TEST_SKIPPED;
    4949        } while (c < '2' || c > '9');
  • uspace/app/tester/ipc/send_sync.c

    r047aa46 re190a89b  
    3939        char c;
    4040
    41         printf("Select phoneid to send msg: 2-9 (Q to skip)\n");
     41        printf("Select phoneid to send msg: 2-9 (q to skip)\n");
    4242        do {
    4343                c = getchar();
    44                 if (c == 'Q' || c == 'q')
     44                if ((c == 'Q') || (c == 'q'))
    4545                        return TEST_SKIPPED;
    4646        } while (c < '2' || c > '9');
  • uspace/app/tester/tester.c

    r047aa46 re190a89b  
    8080{
    8181        test_t *test;
    82         int i = 0, n = 0;
     82        unsigned int i = 0;
     83        unsigned int n = 0;
    8384
    84         printf("\n*** Running all safe tests\n\n");
     85        printf("\n*** Running all safe tests ***\n\n");
    8586
    8687        for (test = tests; test->name != NULL; test++) {
     
    9394        }
    9495
    95         printf("\nSafe tests completed, %d tests run, %d passed.\n\n", i + n, i);
     96        printf("\nSafe tests completed, %u tests run, %u passed.\n\n", i + n, i);
    9697}
    9798
Note: See TracChangeset for help on using the changeset viewer.