Always use bundled liburing.h for test cases

Don't rely on the systems version, or that the system even has one
installed.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
diff --git a/test/accept-link.c b/test/accept-link.c
index e15aed6..2fbc12e 100644
--- a/test/accept-link.c
+++ b/test/accept-link.c
@@ -11,7 +11,7 @@
 #include <netinet/in.h>
 #include <poll.h>
 
-#include <liburing.h>
+#include "liburing.h"
 
 pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
 pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
diff --git a/test/accept.c b/test/accept.c
index c47c2f5..edb7bc2 100644
--- a/test/accept.c
+++ b/test/accept.c
@@ -17,7 +17,7 @@
 #include <netinet/tcp.h>
 #include <netinet/in.h>
 
-#include <liburing.h>
+#include "liburing.h"
 
 static int no_accept;
 
diff --git a/test/poll-link.c b/test/poll-link.c
index 52fd4e1..8634fa4 100644
--- a/test/poll-link.c
+++ b/test/poll-link.c
@@ -11,7 +11,7 @@
 #include <netinet/in.h>
 #include <poll.h>
 
-#include <liburing.h>
+#include "liburing.h"
 
 pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
 pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
diff --git a/test/socket-rw.c b/test/socket-rw.c
index 454bbc8..1ace4b8 100644
--- a/test/socket-rw.c
+++ b/test/socket-rw.c
@@ -17,7 +17,7 @@
 #include <netinet/tcp.h>
 #include <netinet/in.h>
 
-#include <liburing.h>
+#include "liburing.h"
 
 int main(int argc, char *argv[])
 {