Changeset 047aa46 in mainline for uspace/app/tester/ipc/connect.c


Ignore:
Timestamp:
2008-03-26T22:47:55Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e190a89b
Parents:
e13daa5d
Message:

Finish run_safe_tests() in app/tester (contributed by Tim Post).

File:
1 edited

Legend:

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

    re13daa5d r047aa46  
    3737        int phid;
    3838
    39         printf("Choose one service: 0:10000....9:10009\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')
     43                        return TEST_SKIPPED;
    4244        } while (c < '0' || c > '9');
    4345       
Note: See TracChangeset for help on using the changeset viewer.