aboutsummaryrefslogtreecommitdiffstats
path: root/tests/fixed-test.c
diff options
context:
space:
mode:
authorDylan Noblesmith <nobled@dreamwidth.org>2012-06-15 22:44:28 +0000
committerDylan Noblesmith <nobled@dreamwidth.org>2012-06-30 19:58:37 +0000
commitb486e3aba5c7618b7f6311e82b5fdb2c93f2beab (patch)
treed7d7f9c09a2bd1914041ef28010e794099ded471 /tests/fixed-test.c
parenttests: sort list of tests (diff)
downloadwayland-b486e3aba5c7618b7f6311e82b5fdb2c93f2beab.tar
wayland-b486e3aba5c7618b7f6311e82b5fdb2c93f2beab.tar.gz
wayland-b486e3aba5c7618b7f6311e82b5fdb2c93f2beab.tar.bz2
wayland-b486e3aba5c7618b7f6311e82b5fdb2c93f2beab.tar.lz
wayland-b486e3aba5c7618b7f6311e82b5fdb2c93f2beab.tar.xz
wayland-b486e3aba5c7618b7f6311e82b5fdb2c93f2beab.tar.zst
wayland-b486e3aba5c7618b7f6311e82b5fdb2c93f2beab.zip
tests: fix make check for out-of-tree builds
It was failing with missing include files. While here, destroy the ugly "../src/..." include paths used in the tests that was just hacking around this problem in the Makefile: sed -i s/..\\/src\\/// tests/*.c
Diffstat (limited to 'tests/fixed-test.c')
-rw-r--r--tests/fixed-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fixed-test.c b/tests/fixed-test.c
index 16fa5ff..739a3b1 100644
--- a/tests/fixed-test.c
+++ b/tests/fixed-test.c
@@ -23,7 +23,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
-#include "../src/wayland-private.h"
+#include "wayland-private.h"
#include "test-runner.h"
TEST(fixed_double_conversions)