Skip to content

Commit e4b67af

Browse files
committed
Don't use relative header paths in sockhub tests
1 parent 28dfcda commit e4b67af

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

sockhub/tests/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CC = gcc
2-
CFLAGS = -c -I. -Wall -O3 -g -fPIC
2+
CFLAGS = -c -I. -I.. -Wall -O3 -g -fPIC
33
LD = $(CC)
44
LDFLAGS = -g
55
AR = ar

sockhub/tests/sockhub_main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <stdio.h>
22
#include <stdlib.h>
3-
#include "../sockhub.h"
3+
#include "sockhub.h"
44

55
int main(int argc, char* argv[])
66
{

sockhub/tests/test-async-client.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include <stddef.h>
1919
#include <assert.h>
2020

21-
#include "../sockhub.h"
21+
#include "sockhub.h"
2222

2323
#define MAX_CONNECT_ATTEMPTS 10
2424

sockhub/tests/test-client.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include <stddef.h>
1919
#include <assert.h>
2020

21-
#include "../sockhub.h"
21+
#include "sockhub.h"
2222

2323
#define MAX_CONNECT_ATTEMPTS 10
2424

sockhub/tests/test-server.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include <errno.h>
1717
#include <assert.h>
1818

19-
#include "../sockhub.h"
19+
#include "sockhub.h"
2020

2121
#define BUFFER_SIZE 64*1024
2222
#define LISTEN_QUEUE_SIZE 100

0 commit comments

Comments
 (0)