Changeset e190a89b in mainline
- Timestamp:
- 2008-03-27T13:56:21Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2f60a529
- Parents:
- 047aa46
- Location:
- uspace/app/tester
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/ipc/connect.c
r047aa46 re190a89b 37 37 int phid; 38 38 39 printf("Choose one service: 0:10000....9:10009 ( Qto skip)\n");39 printf("Choose one service: 0:10000....9:10009 (q to skip)\n"); 40 40 do { 41 41 c = getchar(); 42 if ( c == 'Q' || c == 'q')42 if ((c == 'Q') || (c == 'q')) 43 43 return TEST_SKIPPED; 44 44 } while (c < '0' || c > '9'); -
uspace/app/tester/ipc/hangup.c
r047aa46 re190a89b 38 38 int phoneid; 39 39 40 printf("Select phoneid to hangup: 2-9 ( Qto skip)\n");40 printf("Select phoneid to hangup: 2-9 (q to skip)\n"); 41 41 do { 42 42 c = getchar(); 43 if ( c == 'Q' || c == 'q')43 if ((c == 'Q') || (c == 'q')) 44 44 return TEST_SKIPPED; 45 45 } while (c < '2' || c > '9'); -
uspace/app/tester/ipc/send_async.c
r047aa46 re190a89b 42 42 char c; 43 43 44 printf("Select phoneid to send msg: 2-9 ( Qto skip)\n");44 printf("Select phoneid to send msg: 2-9 (q to skip)\n"); 45 45 do { 46 46 c = getchar(); 47 if ( c == 'Q' || c == 'q')47 if ((c == 'Q') || (c == 'q')) 48 48 return TEST_SKIPPED; 49 49 } while (c < '2' || c > '9'); -
uspace/app/tester/ipc/send_sync.c
r047aa46 re190a89b 39 39 char c; 40 40 41 printf("Select phoneid to send msg: 2-9 ( Qto skip)\n");41 printf("Select phoneid to send msg: 2-9 (q to skip)\n"); 42 42 do { 43 43 c = getchar(); 44 if ( c == 'Q' || c == 'q')44 if ((c == 'Q') || (c == 'q')) 45 45 return TEST_SKIPPED; 46 46 } while (c < '2' || c > '9'); -
uspace/app/tester/tester.c
r047aa46 re190a89b 80 80 { 81 81 test_t *test; 82 int i = 0, n = 0; 82 unsigned int i = 0; 83 unsigned int n = 0; 83 84 84 printf("\n*** Running all safe tests \n\n");85 printf("\n*** Running all safe tests ***\n\n"); 85 86 86 87 for (test = tests; test->name != NULL; test++) { … … 93 94 } 94 95 95 printf("\nSafe tests completed, % d tests run, %dpassed.\n\n", i + n, i);96 printf("\nSafe tests completed, %u tests run, %u passed.\n\n", i + n, i); 96 97 } 97 98
Note:
See TracChangeset
for help on using the changeset viewer.