From f5dc552c08e30225185beba17eefd1f72ea1def8 Mon Sep 17 00:00:00 2001 From: Hojun-Cho Date: Fri, 14 Aug 2026 16:17:07 +0900 Subject: [PATCH] build: use configured include paths --- bench/main.c | 2 +- tests/daemon_collision_test.c | 2 +- tests/daemon_restart_test.c | 2 +- tests/engine_test.c | 4 ++-- tests/ibus_test.c | 4 ++-- tests/ipc_live_test.c | 2 +- tests/server_test.c | 4 ++-- tests/test.h | 6 +++--- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/bench/main.c b/bench/main.c index 30da87d..a252b2d 100644 --- a/bench/main.c +++ b/bench/main.c @@ -7,7 +7,7 @@ #include #include #include -#include "../ipc.h" +#include "ipc.h" typedef struct Key Key; struct Key { diff --git a/tests/daemon_collision_test.c b/tests/daemon_collision_test.c index 222d9c1..a24c0e3 100644 --- a/tests/daemon_collision_test.c +++ b/tests/daemon_collision_test.c @@ -20,7 +20,7 @@ #include #include -#include "../ipc.h" +#include "ipc.h" enum { diff --git a/tests/daemon_restart_test.c b/tests/daemon_restart_test.c index 3238e8a..2f83831 100644 --- a/tests/daemon_restart_test.c +++ b/tests/daemon_restart_test.c @@ -20,7 +20,7 @@ #include #include -#include "../ipc.h" +#include "ipc.h" enum { diff --git a/tests/engine_test.c b/tests/engine_test.c index ec3e233..3f853ba 100644 --- a/tests/engine_test.c +++ b/tests/engine_test.c @@ -1,5 +1,5 @@ -#include "../strans.c" -#include "../cutest/cutest.h" +#include "strans.c" +#include "cutest/cutest.h" extern Lang testvi; diff --git a/tests/ibus_test.c b/tests/ibus_test.c index d950fc7..77c88ae 100644 --- a/tests/ibus_test.c +++ b/tests/ibus_test.c @@ -1,5 +1,5 @@ -#include "../ibus.c" -#include "../cutest/cutest.h" +#include "ibus.c" +#include "cutest/cutest.h" #include diff --git a/tests/ipc_live_test.c b/tests/ipc_live_test.c index e24adab..de0f013 100644 --- a/tests/ipc_live_test.c +++ b/tests/ipc_live_test.c @@ -19,7 +19,7 @@ #include #include -#include "../ipc.h" +#include "ipc.h" enum { diff --git a/tests/server_test.c b/tests/server_test.c index bc55b9f..954a92e 100644 --- a/tests/server_test.c +++ b/tests/server_test.c @@ -3,8 +3,8 @@ #include #include -#include "../srv.c" -#include "../cutest/cutest.h" +#include "srv.c" +#include "cutest/cutest.h" void testengineinit(int); void testenginehandle(Keyreq*); diff --git a/tests/test.h b/tests/test.h index 1d1d7a4..f82d04a 100644 --- a/tests/test.h +++ b/tests/test.h @@ -1,6 +1,6 @@ -#include "../cutest/cutest.h" -#include "../dat.h" -#include "../fn.h" +#include "cutest/cutest.h" +#include "dat.h" +#include "fn.h" extern Lang testvi;