diff options
author | Daniel Elstner <daniel.kitta@gmail.com> | 2015-10-03 14:28:43 +0200 |
---|---|---|
committer | Daniel Elstner <daniel.kitta@gmail.com> | 2015-10-03 14:28:43 +0200 |
commit | b480383d4605915f7b4cd8f14ccf62af9bf710f3 (patch) | |
tree | a60c17b5b456b0643d2cd1954ff16038bc4beb7f /tests | |
parent | 41bab68212533f4697ad378af574e06ea83e4fd9 (diff) | |
download | libsigrokdecode-b480383d4605915f7b4cd8f14ccf62af9bf710f3.tar.gz libsigrokdecode-b480383d4605915f7b4cd8f14ccf62af9bf710f3.zip |
tests: Do not reference parent directory in includes
Rely on the compiler include path instead.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/core.c | 2 | ||||
-rw-r--r-- | tests/decoder.c | 2 | ||||
-rw-r--r-- | tests/inst.c | 2 | ||||
-rw-r--r-- | tests/main.c | 2 | ||||
-rw-r--r-- | tests/session.c | 4 |
5 files changed, 6 insertions, 6 deletions
diff --git a/tests/core.c b/tests/core.c index 3b26a2e..670d9bd 100644 --- a/tests/core.c +++ b/tests/core.c @@ -19,7 +19,7 @@ */ #include <config.h> -#include "../libsigrokdecode.h" /* First, to avoid compiler warning. */ +#include <libsigrokdecode.h> /* First, to avoid compiler warning. */ #include <stdlib.h> #include <check.h> #include "lib.h" diff --git a/tests/decoder.c b/tests/decoder.c index 7763b0a..3a86566 100644 --- a/tests/decoder.c +++ b/tests/decoder.c @@ -19,7 +19,7 @@ */ #include <config.h> -#include "../libsigrokdecode.h" /* First, to avoid compiler warning. */ +#include <libsigrokdecode.h> /* First, to avoid compiler warning. */ #include <stdlib.h> #include <check.h> #include "lib.h" diff --git a/tests/inst.c b/tests/inst.c index d227a51..d52793a 100644 --- a/tests/inst.c +++ b/tests/inst.c @@ -19,7 +19,7 @@ */ #include <config.h> -#include "../libsigrokdecode.h" /* First, to avoid compiler warning. */ +#include <libsigrokdecode.h> /* First, to avoid compiler warning. */ #include <stdlib.h> #include <check.h> #include "lib.h" diff --git a/tests/main.c b/tests/main.c index 19c459d..b84b20e 100644 --- a/tests/main.c +++ b/tests/main.c @@ -19,7 +19,7 @@ */ #include <config.h> -#include "../libsigrokdecode.h" /* First, to avoid compiler warning. */ +#include <libsigrokdecode.h> /* First, to avoid compiler warning. */ #include <stdlib.h> #include <check.h> #include "lib.h" diff --git a/tests/session.c b/tests/session.c index 431ab5e..0d352bd 100644 --- a/tests/session.c +++ b/tests/session.c @@ -19,8 +19,8 @@ */ #include <config.h> -#include "../libsigrokdecode-internal.h" /* First, to avoid compiler warning. */ -#include "../libsigrokdecode.h" +#include <libsigrokdecode-internal.h> /* First, to avoid compiler warning. */ +#include <libsigrokdecode.h> #include <stdint.h> #include <stdlib.h> #include <check.h> |