Changeset 9b20126 in mainline for uspace/lib/pcut/src/os/helenos.c
- Timestamp:
- 2014-09-19T08:23:01Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c85a57f
- Parents:
- 15d0046
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/pcut/src/os/helenos.c
r15d0046 r9b20126 185 185 int status = TEST_OUTCOME_PASS; 186 186 187 int rc = task_spawnvf(&test_task_id, self_path, arguments, files); 187 task_wait_t test_task_wait; 188 int rc = task_spawnvf(&test_task_id, &test_task_wait, self_path, arguments, files); 188 189 if (rc != EOK) { 189 190 status = TEST_OUTCOME_ERROR; … … 203 204 task_exit_t task_exit; 204 205 int task_retval; 205 rc = task_wait( test_task_id, &task_exit, &task_retval);206 rc = task_wait(&test_task_wait, &task_exit, &task_retval); 206 207 if (rc != EOK) { 207 208 status = TEST_OUTCOME_ERROR; … … 227 228 pcut_report_test_done_unparsed(test, status, extra_output_buffer, OUTPUT_BUFFER_SIZE); 228 229 } 230 231 void pcut_hook_before_test(pcut_item_t *test) { 232 PCUT_UNUSED(test); 233 234 /* Do nothing. */ 235 }
Note:
See TracChangeset
for help on using the changeset viewer.