2012-03-03 07:03:16 +08:00
|
|
|
/*
|
|
|
|
* Copyright © 2012 Intel Corporation
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
* the above copyright notice appear in all copies and that both that copyright
|
|
|
|
* notice and this permission notice appear in supporting documentation, and
|
|
|
|
* that the name of the copyright holders not be used in advertising or
|
|
|
|
* publicity pertaining to distribution of the software without specific,
|
|
|
|
* written prior permission. The copyright holders make no representations
|
|
|
|
* about the suitability of this software for any purpose. It is provided "as
|
|
|
|
* is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
* EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
|
|
* OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2012-03-24 01:01:23 +08:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
|
2012-03-03 07:03:16 +08:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
2014-09-24 20:07:59 +08:00
|
|
|
#include <sys/stat.h>
|
2012-03-03 12:42:07 +08:00
|
|
|
#include <string.h>
|
2012-03-03 07:03:16 +08:00
|
|
|
#include <assert.h>
|
2012-03-24 01:01:23 +08:00
|
|
|
#include <dlfcn.h>
|
2012-04-19 21:52:32 +08:00
|
|
|
#include <errno.h>
|
2014-09-24 20:07:59 +08:00
|
|
|
#include <limits.h>
|
|
|
|
|
2012-03-03 07:03:16 +08:00
|
|
|
#include "test-runner.h"
|
|
|
|
|
2012-03-24 01:01:23 +08:00
|
|
|
static int num_alloc;
|
|
|
|
static void* (*sys_malloc)(size_t);
|
|
|
|
static void (*sys_free)(void*);
|
2012-07-24 02:54:39 +08:00
|
|
|
static void* (*sys_realloc)(void*, size_t);
|
2012-07-24 08:14:33 +08:00
|
|
|
static void* (*sys_calloc)(size_t, size_t);
|
2012-03-24 01:01:23 +08:00
|
|
|
|
2012-08-17 09:12:05 +08:00
|
|
|
int leak_check_enabled;
|
|
|
|
|
2012-03-03 07:03:16 +08:00
|
|
|
extern const struct test __start_test_section, __stop_test_section;
|
|
|
|
|
2012-04-13 22:13:49 +08:00
|
|
|
__attribute__ ((visibility("default"))) void *
|
|
|
|
malloc(size_t size)
|
2012-03-24 01:01:23 +08:00
|
|
|
{
|
|
|
|
num_alloc++;
|
|
|
|
return sys_malloc(size);
|
|
|
|
}
|
|
|
|
|
2012-04-13 22:13:49 +08:00
|
|
|
__attribute__ ((visibility("default"))) void
|
|
|
|
free(void* mem)
|
2012-03-24 01:01:23 +08:00
|
|
|
{
|
|
|
|
if (mem != NULL)
|
|
|
|
num_alloc--;
|
|
|
|
sys_free(mem);
|
|
|
|
}
|
|
|
|
|
2012-07-24 02:54:39 +08:00
|
|
|
__attribute__ ((visibility("default"))) void *
|
|
|
|
realloc(void* mem, size_t size)
|
|
|
|
{
|
|
|
|
if (mem == NULL)
|
|
|
|
num_alloc++;
|
|
|
|
return sys_realloc(mem, size);
|
|
|
|
}
|
|
|
|
|
2012-07-24 08:14:33 +08:00
|
|
|
__attribute__ ((visibility("default"))) void *
|
|
|
|
calloc(size_t nmemb, size_t size)
|
|
|
|
{
|
|
|
|
if (sys_calloc == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
num_alloc++;
|
|
|
|
|
|
|
|
return sys_calloc(nmemb, size);
|
|
|
|
}
|
|
|
|
|
2012-03-06 11:29:53 +08:00
|
|
|
static const struct test *
|
|
|
|
find_test(const char *name)
|
2012-03-03 07:03:16 +08:00
|
|
|
{
|
|
|
|
const struct test *t;
|
|
|
|
|
2012-03-06 11:29:53 +08:00
|
|
|
for (t = &__start_test_section; t < &__stop_test_section; t++)
|
|
|
|
if (strcmp(t->name, name) == 0)
|
|
|
|
return t;
|
2012-03-03 07:03:16 +08:00
|
|
|
|
2012-03-06 11:29:53 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
2012-03-03 07:03:16 +08:00
|
|
|
|
2013-02-12 02:58:39 +08:00
|
|
|
static void
|
|
|
|
usage(const char *name, int status)
|
|
|
|
{
|
|
|
|
const struct test *t;
|
|
|
|
|
|
|
|
fprintf(stderr, "Usage: %s [TEST]\n\n"
|
|
|
|
"With no arguments, run all test. Specify test case to run\n"
|
|
|
|
"only that test without forking. Available tests:\n\n",
|
|
|
|
name);
|
|
|
|
|
|
|
|
for (t = &__start_test_section; t < &__stop_test_section; t++)
|
|
|
|
fprintf(stderr, " %s\n", t->name);
|
|
|
|
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
|
|
|
|
exit(status);
|
|
|
|
}
|
|
|
|
|
2012-03-06 11:29:53 +08:00
|
|
|
static void
|
|
|
|
run_test(const struct test *t)
|
|
|
|
{
|
2012-03-24 01:01:23 +08:00
|
|
|
int cur_alloc = num_alloc;
|
2013-09-18 23:29:48 +08:00
|
|
|
int cur_fds, num_fds;
|
2012-03-24 01:01:23 +08:00
|
|
|
|
2012-04-19 21:52:32 +08:00
|
|
|
cur_fds = count_open_fds();
|
2012-03-06 11:29:53 +08:00
|
|
|
t->run();
|
2012-08-17 09:12:05 +08:00
|
|
|
if (leak_check_enabled) {
|
2013-09-18 23:29:48 +08:00
|
|
|
if (cur_alloc != num_alloc) {
|
|
|
|
fprintf(stderr, "Memory leak detected in test. "
|
|
|
|
"Allocated %d blocks, unfreed %d\n", num_alloc,
|
|
|
|
num_alloc - cur_alloc);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
num_fds = count_open_fds();
|
|
|
|
if (cur_fds != num_fds) {
|
|
|
|
fprintf(stderr, "fd leak detected in test. "
|
|
|
|
"Opened %d files, unclosed %d\n", num_fds,
|
|
|
|
num_fds - cur_fds);
|
|
|
|
abort();
|
|
|
|
}
|
2012-08-17 09:12:04 +08:00
|
|
|
}
|
2012-03-06 11:29:53 +08:00
|
|
|
exit(EXIT_SUCCESS);
|
2012-03-03 07:03:16 +08:00
|
|
|
}
|
|
|
|
|
2014-09-24 20:07:59 +08:00
|
|
|
#ifndef PATH_MAX
|
|
|
|
#define PATH_MAX 256
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_xdg_runtime_dir(void)
|
|
|
|
{
|
|
|
|
char xdg_runtime_dir[PATH_MAX];
|
|
|
|
const char *xrd_env;
|
|
|
|
|
|
|
|
xrd_env = getenv("XDG_RUNTIME_DIR");
|
|
|
|
/* if XDG_RUNTIME_DIR is not set in environ, fallback to /tmp */
|
|
|
|
assert((snprintf(xdg_runtime_dir, PATH_MAX, "%s/wayland-tests",
|
|
|
|
xrd_env ? xrd_env : "/tmp") < PATH_MAX)
|
|
|
|
&& "test error: XDG_RUNTIME_DIR too long");
|
|
|
|
|
|
|
|
if (mkdir(xdg_runtime_dir, 0700) == -1)
|
|
|
|
if (errno != EEXIST) {
|
|
|
|
perror("Creating XDG_RUNTIME_DIR");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (setenv("XDG_RUNTIME_DIR", xdg_runtime_dir, 1) == -1) {
|
|
|
|
perror("Setting XDG_RUNTIME_DIR");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rmdir_xdg_runtime_dir(void)
|
|
|
|
{
|
|
|
|
const char *xrd_env = getenv("XDG_RUNTIME_DIR");
|
|
|
|
assert(xrd_env && "No XDG_RUNTIME_DIR set");
|
|
|
|
|
|
|
|
/* rmdir may fail if some test didn't do clean up */
|
|
|
|
if (rmdir(xrd_env) == -1)
|
|
|
|
perror("Cleaning XDG_RUNTIME_DIR");
|
|
|
|
}
|
|
|
|
|
2012-03-03 07:03:16 +08:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
const struct test *t;
|
|
|
|
pid_t pid;
|
2012-03-03 12:42:07 +08:00
|
|
|
int total, pass;
|
2012-03-03 07:03:16 +08:00
|
|
|
siginfo_t info;
|
|
|
|
|
2012-07-24 02:54:39 +08:00
|
|
|
/* Load system malloc, free, and realloc */
|
2012-07-24 08:14:33 +08:00
|
|
|
sys_calloc = dlsym(RTLD_NEXT, "calloc");
|
2012-07-24 02:54:39 +08:00
|
|
|
sys_realloc = dlsym(RTLD_NEXT, "realloc");
|
2012-03-24 01:01:23 +08:00
|
|
|
sys_malloc = dlsym(RTLD_NEXT, "malloc");
|
|
|
|
sys_free = dlsym(RTLD_NEXT, "free");
|
|
|
|
|
2012-08-17 09:12:05 +08:00
|
|
|
leak_check_enabled = !getenv("NO_ASSERT_LEAK_CHECK");
|
|
|
|
|
2013-02-12 02:58:39 +08:00
|
|
|
if (argc == 2 && strcmp(argv[1], "--help") == 0)
|
|
|
|
usage(argv[0], EXIT_SUCCESS);
|
|
|
|
|
2012-03-06 11:29:53 +08:00
|
|
|
if (argc == 2) {
|
|
|
|
t = find_test(argv[1]);
|
|
|
|
if (t == NULL) {
|
2012-04-19 19:06:08 +08:00
|
|
|
fprintf(stderr, "unknown test: \"%s\"\n", argv[1]);
|
2013-02-12 02:58:39 +08:00
|
|
|
usage(argv[0], EXIT_FAILURE);
|
2012-03-06 11:29:53 +08:00
|
|
|
}
|
|
|
|
|
2014-09-24 20:07:59 +08:00
|
|
|
set_xdg_runtime_dir();
|
|
|
|
/* run_test calls exit() */
|
|
|
|
assert(atexit(rmdir_xdg_runtime_dir) == 0);
|
|
|
|
|
2012-03-06 11:29:53 +08:00
|
|
|
run_test(t);
|
|
|
|
}
|
2012-03-03 07:03:16 +08:00
|
|
|
|
2014-09-24 20:07:59 +08:00
|
|
|
/* set our own XDG_RUNTIME_DIR */
|
|
|
|
set_xdg_runtime_dir();
|
|
|
|
|
2012-03-03 07:03:16 +08:00
|
|
|
pass = 0;
|
|
|
|
for (t = &__start_test_section; t < &__stop_test_section; t++) {
|
2012-04-19 19:06:08 +08:00
|
|
|
int success = 0;
|
|
|
|
|
2012-03-03 07:03:16 +08:00
|
|
|
pid = fork();
|
|
|
|
assert(pid >= 0);
|
2012-04-19 19:06:08 +08:00
|
|
|
|
2012-03-06 11:29:53 +08:00
|
|
|
if (pid == 0)
|
2012-04-19 19:06:08 +08:00
|
|
|
run_test(t); /* never returns */
|
|
|
|
|
2012-03-03 07:03:16 +08:00
|
|
|
if (waitid(P_ALL, 0, &info, WEXITED)) {
|
|
|
|
fprintf(stderr, "waitid failed: %m\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2012-04-19 19:06:08 +08:00
|
|
|
fprintf(stderr, "test \"%s\":\t", t->name);
|
2012-03-03 07:03:16 +08:00
|
|
|
switch (info.si_code) {
|
|
|
|
case CLD_EXITED:
|
2012-04-19 19:06:08 +08:00
|
|
|
fprintf(stderr, "exit status %d", info.si_status);
|
2012-03-03 07:03:16 +08:00
|
|
|
if (info.si_status == EXIT_SUCCESS)
|
2012-04-19 19:06:08 +08:00
|
|
|
success = 1;
|
2012-03-03 07:03:16 +08:00
|
|
|
break;
|
|
|
|
case CLD_KILLED:
|
|
|
|
case CLD_DUMPED:
|
2012-04-19 19:06:08 +08:00
|
|
|
fprintf(stderr, "signal %d", info.si_status);
|
2012-03-03 07:03:16 +08:00
|
|
|
break;
|
|
|
|
}
|
2012-04-19 19:06:08 +08:00
|
|
|
|
2012-04-19 19:26:51 +08:00
|
|
|
if (t->must_fail)
|
|
|
|
success = !success;
|
|
|
|
|
2012-04-19 19:06:08 +08:00
|
|
|
if (success) {
|
|
|
|
pass++;
|
|
|
|
fprintf(stderr, ", pass.\n");
|
|
|
|
} else
|
|
|
|
fprintf(stderr, ", fail.\n");
|
2012-03-03 07:03:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
total = &__stop_test_section - &__start_test_section;
|
|
|
|
fprintf(stderr, "%d tests, %d pass, %d fail\n",
|
|
|
|
total, pass, total - pass);
|
|
|
|
|
2014-09-24 20:07:59 +08:00
|
|
|
/* cleaning */
|
|
|
|
rmdir_xdg_runtime_dir();
|
|
|
|
|
2012-03-03 07:03:16 +08:00
|
|
|
return pass == total ? EXIT_SUCCESS : EXIT_FAILURE;
|
|
|
|
}
|