summaryrefslogtreecommitdiffstats
path: root/tests/test_connlabel.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_connlabel.c')
-rw-r--r--tests/test_connlabel.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_connlabel.c b/tests/test_connlabel.c
index 99b1171..f6f222b 100644
--- a/tests/test_connlabel.c
+++ b/tests/test_connlabel.c
@@ -1,4 +1,5 @@
#include <assert.h>
+#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
@@ -60,6 +61,13 @@ int main(void)
l = nfct_labelmap_new("qa-connlabel.conf");
if (!l)
l = nfct_labelmap_new("tests/qa-connlabel.conf");
+ if (!l) {
+ char testconf[PATH_MAX];
+
+ snprintf(testconf, PATH_MAX,
+ "%s/qa-connlabel.conf", getenv("srcdir"));
+ l = nfct_labelmap_new(testconf);
+ }
assert(l);
puts("qa-connlabel.conf:");
dump_map(l);