|
Szabolcs Nagy |
814c6f |
#include <stdlib.h>
|
|
Szabolcs Nagy |
814c6f |
#include <string.h>
|
|
Szabolcs Nagy |
814c6f |
#include <errno.h>
|
|
Szabolcs Nagy |
814c6f |
#include <signal.h>
|
|
Szabolcs Nagy |
814c6f |
#include <time.h>
|
|
Szabolcs Nagy |
814c6f |
#include <sys/types.h>
|
|
Szabolcs Nagy |
814c6f |
#include <sys/wait.h>
|
|
Szabolcs Nagy |
814c6f |
#include <sys/time.h>
|
|
Szabolcs Nagy |
814c6f |
#include <sys/resource.h>
|
|
Szabolcs Nagy |
814c6f |
#include <unistd.h>
|
|
Szabolcs Nagy |
814c6f |
#include "test.h"
|
|
Szabolcs Nagy |
814c6f |
|
|
Szabolcs Nagy |
814c6f |
static void handler(int s)
|
|
Szabolcs Nagy |
814c6f |
{
|
|
Szabolcs Nagy |
814c6f |
}
|
|
Szabolcs Nagy |
814c6f |
|
|
Szabolcs Nagy |
814c6f |
static int start(char *argv[])
|
|
Szabolcs Nagy |
814c6f |
{
|
|
Szabolcs Nagy |
814c6f |
int pid;
|
|
Szabolcs Nagy |
814c6f |
|
|
Szabolcs Nagy |
814c6f |
pid = fork();
|
|
Szabolcs Nagy |
814c6f |
if (pid == 0) {
|
|
Szabolcs Nagy |
157cc4 |
t_setrlim(RLIMIT_STACK, 100*1024);
|
|
Szabolcs Nagy |
157cc4 |
t_setrlim(RLIMIT_CPU, 2);
|
|
Szabolcs Nagy |
814c6f |
execv(argv[0], argv);
|
|
Szabolcs Nagy |
814c6f |
t_error("%s exec failed: %s\n", argv[0], strerror(errno));
|
|
Szabolcs Nagy |
814c6f |
exit(1);
|
|
Szabolcs Nagy |
814c6f |
}
|
|
Szabolcs Nagy |
814c6f |
if (pid == -1) {
|
|
Szabolcs Nagy |
814c6f |
t_error("%s fork failed: %s\n", argv[0], strerror(errno));
|
|
Szabolcs Nagy |
814c6f |
exit(-1);
|
|
Szabolcs Nagy |
814c6f |
}
|
|
Szabolcs Nagy |
814c6f |
return pid;
|
|
Szabolcs Nagy |
814c6f |
}
|
|
Szabolcs Nagy |
814c6f |
|
|
Szabolcs Nagy |
814c6f |
int main(int argc, char *argv[])
|
|
Szabolcs Nagy |
814c6f |
{
|
|
Szabolcs Nagy |
814c6f |
int status;
|
|
Szabolcs Nagy |
814c6f |
sigset_t set;
|
|
Szabolcs Nagy |
814c6f |
int timeout = 0;
|
|
Szabolcs Nagy |
814c6f |
int sig = 0;
|
|
Szabolcs Nagy |
814c6f |
int pid;
|
|
Szabolcs Nagy |
814c6f |
|
|
Szabolcs Nagy |
814c6f |
if (argc < 2) {
|
|
Szabolcs Nagy |
814c6f |
t_error("usage: ./run cmd [args..]\n");
|
|
Szabolcs Nagy |
814c6f |
return -1;
|
|
Szabolcs Nagy |
814c6f |
}
|
|
Szabolcs Nagy |
814c6f |
argv++;
|
|
Szabolcs Nagy |
814c6f |
sigemptyset(&set);
|
|
Szabolcs Nagy |
814c6f |
sigaddset(&set, SIGCHLD);
|
|
Szabolcs Nagy |
814c6f |
sigprocmask(SIG_BLOCK, &set, 0);
|
|
Szabolcs Nagy |
814c6f |
signal(SIGCHLD, handler);
|
|
Szabolcs Nagy |
814c6f |
pid = start(argv);
|
|
Szabolcs Nagy |
814c6f |
if (sigtimedwait(&set, 0, &(struct timespec){5,0}) == -1) {
|
|
Szabolcs Nagy |
814c6f |
if (errno == EAGAIN)
|
|
Szabolcs Nagy |
814c6f |
timeout = 1;
|
|
Szabolcs Nagy |
814c6f |
if (kill(pid, SIGKILL) == -1)
|
|
Szabolcs Nagy |
814c6f |
t_error("%s kill failed: %s\n", argv[0], strerror(errno));
|
|
Szabolcs Nagy |
814c6f |
}
|
|
Szabolcs Nagy |
814c6f |
if (waitpid(pid, &status, 0) != pid) {
|
|
Szabolcs Nagy |
814c6f |
t_error("%s waitpid failed: %s\n", argv[0], strerror(errno));
|
|
Szabolcs Nagy |
814c6f |
return -1;
|
|
Szabolcs Nagy |
814c6f |
}
|
|
Szabolcs Nagy |
814c6f |
if (WIFEXITED(status)) {
|
|
Szabolcs Nagy |
814c6f |
if (WEXITSTATUS(status) == 0)
|
|
Szabolcs Nagy |
814c6f |
return 0;
|
|
Szabolcs Nagy |
814c6f |
t_printf("FAIL %s [status %d]\n", argv[0], WEXITSTATUS(status));
|
|
Szabolcs Nagy |
814c6f |
} else if (timeout) {
|
|
Szabolcs Nagy |
814c6f |
t_printf("FAIL %s [timed out]\n", argv[0]);
|
|
Szabolcs Nagy |
814c6f |
} else if (WIFSIGNALED(status)) {
|
|
Szabolcs Nagy |
814c6f |
t_printf("FAIL %s [signal %s]\n", argv[0], strsignal(WTERMSIG(status)));
|
|
Szabolcs Nagy |
814c6f |
} else
|
|
Szabolcs Nagy |
814c6f |
t_printf("FAIL %s [unknown]\n", argv[0]);
|
|
Szabolcs Nagy |
814c6f |
return 1;
|
|
Szabolcs Nagy |
814c6f |
}
|