aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/79 global-rpath
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2022-03-28 19:33:52 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2022-03-28 19:33:52 +0300
commit6256b277687cba68e527712c3a7d327f480ab005 (patch)
tree9e0ac18411b3cefd9b02459d725b438044efaae8 /test cases/unit/79 global-rpath
parent479a84455f6b838e862b7b68b6edd8968dd8fe1c (diff)
downloadmeson-dircondense64.zip
meson-dircondense64.tar.gz
meson-dircondense64.tar.bz2
Condense test directory names.dircondense64
Diffstat (limited to 'test cases/unit/79 global-rpath')
-rw-r--r--test cases/unit/79 global-rpath/meson.build3
-rw-r--r--test cases/unit/79 global-rpath/rpathified.cpp6
-rw-r--r--test cases/unit/79 global-rpath/yonder/meson.build5
-rw-r--r--test cases/unit/79 global-rpath/yonder/yonder.cpp3
-rw-r--r--test cases/unit/79 global-rpath/yonder/yonder.h1
5 files changed, 18 insertions, 0 deletions
diff --git a/test cases/unit/79 global-rpath/meson.build b/test cases/unit/79 global-rpath/meson.build
new file mode 100644
index 0000000..c67d9e0
--- /dev/null
+++ b/test cases/unit/79 global-rpath/meson.build
@@ -0,0 +1,3 @@
+project('global-rpath', 'cpp')
+yonder_dep = dependency('yonder')
+executable('rpathified', 'rpathified.cpp', dependencies: [yonder_dep], install: true)
diff --git a/test cases/unit/79 global-rpath/rpathified.cpp b/test cases/unit/79 global-rpath/rpathified.cpp
new file mode 100644
index 0000000..3788906
--- /dev/null
+++ b/test cases/unit/79 global-rpath/rpathified.cpp
@@ -0,0 +1,6 @@
+#include <yonder.h>
+#include <string.h>
+int main(int argc, char **argv)
+{
+ return strcmp(yonder(), "AB54 6BR");
+}
diff --git a/test cases/unit/79 global-rpath/yonder/meson.build b/test cases/unit/79 global-rpath/yonder/meson.build
new file mode 100644
index 0000000..e32f383
--- /dev/null
+++ b/test cases/unit/79 global-rpath/yonder/meson.build
@@ -0,0 +1,5 @@
+project('yonder', 'cpp')
+yonder = shared_library('yonder', 'yonder.cpp', install: true)
+install_headers('yonder.h')
+pkgconfig = import('pkgconfig')
+pkgconfig.generate(yonder)
diff --git a/test cases/unit/79 global-rpath/yonder/yonder.cpp b/test cases/unit/79 global-rpath/yonder/yonder.cpp
new file mode 100644
index 0000000..b182d34
--- /dev/null
+++ b/test cases/unit/79 global-rpath/yonder/yonder.cpp
@@ -0,0 +1,3 @@
+#include "yonder.h"
+
+char *yonder(void) { return "AB54 6BR"; }
diff --git a/test cases/unit/79 global-rpath/yonder/yonder.h b/test cases/unit/79 global-rpath/yonder/yonder.h
new file mode 100644
index 0000000..9d9ad16
--- /dev/null
+++ b/test cases/unit/79 global-rpath/yonder/yonder.h
@@ -0,0 +1 @@
+char *yonder(void);