Changeset 012dd8e in mainline for uspace/app/tester/proc/task_wait.c
- Timestamp:
- 2019-08-07T09:15:30Z (6 years ago)
- Children:
- e8747bd8
- Parents:
- 780c8ce
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-11-01 00:08:04)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 09:15:30)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/proc/task_wait.c
r780c8ce r012dd8e 73 73 rc = task_wait(&wait, &texit, &retval); 74 74 TPRINTF("done.\n"); 75 TASSERT(rc == EIN VAL);75 TASSERT(rc == EINTR); 76 76 TASSERT(task_wait_get(&wait) == 0); 77 77 TPRINTF("OK\n"); … … 215 215 rc = task_wait(&wait, &texit, &retval); 216 216 TPRINTF("done.\n"); 217 TASSERT(rc == EIN VAL);217 TASSERT(rc == EINTR); 218 218 TASSERT(task_wait_get(&wait) == 0); 219 219 TASSERT(texit == TASK_EXIT_UNEXPECTED);
Note:
See TracChangeset
for help on using the changeset viewer.