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


Ignore:
Timestamp:
2008-03-26T22:47:55Z (17 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/send_sync.c

    re13daa5d r047aa46  
    3939        char c;
    4040
    41         printf("Select phoneid to send msg: 2-9\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')
     45                        return TEST_SKIPPED;
    4446        } while (c < '2' || c > '9');
    4547        phoneid = c - '0';
Note: See TracChangeset for help on using the changeset viewer.