1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00
libuv/test/runner.c

169 lines
5.1 KiB
C
Raw Normal View History

/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
2011-04-05 01:43:17 +02:00
2011-04-19 04:26:32 +02:00
#include <string.h>
#include "runner.h"
2011-04-19 04:26:32 +02:00
#include "task.h"
2011-04-05 01:43:17 +02:00
char executable_path[PATHMAX] = { '\0' };
2011-04-05 01:43:17 +02:00
2011-04-19 04:26:32 +02:00
/* Start a specific process declared by TEST_ENTRY or TEST_HELPER. */
/* Returns the exit code of the specific process. */
int run_process(char* name) {
task_entry_t *test;
2011-04-05 01:43:17 +02:00
2011-04-19 04:26:32 +02:00
for (test = (task_entry_t*)&TASKS; test->main; test++) {
if (strcmp(name, test->process_name) == 0) {
return test->main();
}
}
2011-04-05 01:43:17 +02:00
2011-04-19 04:26:32 +02:00
LOGF("Test process %s not found!\n", name);
return 255;
}
2011-04-05 01:43:17 +02:00
/*
2011-04-19 04:26:32 +02:00
* Runs all processes associated with a particular test or benchmark.
* It returns 1 if the test succeeded, 0 if it failed.
2011-04-05 01:43:17 +02:00
* If the test fails it prints diagnostic information.
2011-04-19 04:26:32 +02:00
* If benchmark_output is nonzero, the output from the main process is
* always shown.
2011-04-05 01:43:17 +02:00
*/
2011-04-19 04:26:32 +02:00
int run_task(task_entry_t *test, int timeout, int benchmark_output) {
2011-04-05 01:43:17 +02:00
int i, result, success;
char errmsg[256];
2011-04-19 04:26:32 +02:00
task_entry_t *helper;
2011-04-05 01:43:17 +02:00
int process_count;
2011-04-19 04:26:32 +02:00
process_info_t processes[MAX_PROCESSES];
2011-04-05 01:43:17 +02:00
process_info_t *main_process;
success = 0;
process_count = 0;
2011-04-05 03:03:45 +02:00
/* Start all helpers for this test first. */
2011-04-19 04:26:32 +02:00
for (helper = (task_entry_t*)&TASKS; helper->main; helper++) {
2011-04-05 01:43:17 +02:00
if (helper->is_helper &&
2011-04-19 04:26:32 +02:00
strcmp(test->task_name, helper->task_name) == 0) {
2011-04-05 01:43:17 +02:00
if (process_start(helper->process_name, &processes[process_count]) == -1) {
2011-04-19 04:26:32 +02:00
snprintf((char*)&errmsg,
sizeof(errmsg),
"process `%s` failed to start.",
helper->process_name);
2011-04-05 01:43:17 +02:00
goto finalize;
}
process_count++;
}
}
/* Start the main test process. */
if (process_start(test->process_name, &processes[process_count]) == -1) {
2011-04-18 00:39:29 -07:00
snprintf((char*)&errmsg, sizeof(errmsg), "process `%s` failed to start.",
test->process_name);
2011-04-05 01:43:17 +02:00
goto finalize;
}
main_process = &processes[process_count];
process_count++;
/* Wait for the main process to terminate. */
2011-04-19 04:26:32 +02:00
result = process_wait(main_process, 1, timeout);
2011-04-05 01:43:17 +02:00
if (result == -1) {
FATAL("process_wait failed");
2011-04-05 01:43:17 +02:00
} else if (result == -2) {
2011-04-05 03:03:45 +02:00
snprintf((char*)&errmsg, sizeof(errmsg), "timeout.");
2011-04-05 01:43:17 +02:00
goto finalize;
}
2011-04-05 03:03:45 +02:00
/* Reap the main process. */
2011-04-05 01:43:17 +02:00
result = process_reap(main_process);
if (result != 0) {
2011-04-05 03:03:45 +02:00
snprintf((char*)&errmsg, sizeof(errmsg), "exit code %d.", result);
2011-04-05 01:43:17 +02:00
goto finalize;
}
/* Yes! did it. */
success = 1;
finalize:
/* Kill all (helper) processes that are still running. */
2011-04-18 00:39:29 -07:00
for (i = 0; i < process_count; i++) {
2011-04-05 03:03:45 +02:00
/* If terminate fails the process is probably already closed. */
2011-04-05 01:43:17 +02:00
process_terminate(&processes[i]);
2011-04-18 00:39:29 -07:00
}
2011-04-05 01:43:17 +02:00
/* Wait until all processes have really terminated. */
2011-04-18 00:39:29 -07:00
if (process_wait((process_info_t*)&processes, process_count, -1) < 0) {
FATAL("process_wait failed");
2011-04-18 00:39:29 -07:00
}
2011-04-05 01:43:17 +02:00
/* Show error and output from processes if the test failed. */
if (!success) {
LOG("\n=============================================================\n");
2011-04-19 04:26:32 +02:00
LOGF("`%s` failed: %s\n", test->task_name, errmsg);
2011-04-18 00:39:29 -07:00
2011-04-05 01:43:17 +02:00
for (i = 0; i < process_count; i++) {
switch (process_output_size(&processes[i])) {
2011-04-19 04:26:32 +02:00
case -1:
LOGF("Output from process `%s`: (unavailable)\n",
process_get_name(&processes[i]));
break;
case 0:
LOGF("Output from process `%s`: (no output)\n",
process_get_name(&processes[i]));
break;
default:
LOGF("Output from process `%s`:\n", process_get_name(&processes[i]));
process_copy_output(&processes[i], fileno(stderr));
break;
2011-04-05 01:43:17 +02:00
}
}
LOG("\n");
2011-04-19 04:26:32 +02:00
/* In benchmark mode show concise output from the main process. */
} else if (benchmark_output) {
switch (process_output_size(main_process)) {
case -1:
LOGF("%s: (unavailabe)\n", test->task_name);
break;
case 0:
LOGF("%s: (no output)\n", test->task_name);
break;
default:
2011-05-09 21:38:03 -07:00
//LOGF("%s: ", test->task_name);
2011-04-19 04:26:32 +02:00
process_copy_output(main_process, fileno(stderr));
break;
}
2011-04-05 01:43:17 +02:00
}
/* Clean up all process handles. */
2011-04-18 00:39:29 -07:00
for (i = 0; i < process_count; i++) {
2011-04-05 01:43:17 +02:00
process_cleanup(&processes[i]);
2011-04-18 00:39:29 -07:00
}
2011-04-05 01:43:17 +02:00
return success;
}