summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-06-16 14:50:27 (GMT)
committerBrad King <brad.king@kitware.com>2020-06-16 15:17:55 (GMT)
commit248d0570c9016392feb841ffce6ac77e194aefe8 (patch)
tree2a43f5ef582fa6b2af06015b070fb9402214e455 /Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux
parent3f110a08571e3a506184e6b8a8e9622317435912 (diff)
downloadCMake-248d0570c9016392feb841ffce6ac77e194aefe8.zip
CMake-248d0570c9016392feb841ffce6ac77e194aefe8.tar.gz
CMake-248d0570c9016392feb841ffce6ac77e194aefe8.tar.bz2
Tests: Factor out RunCMake.file-GET_RUNTIME_DEPENDENCIES test
Move the `file(GET_RUNTIME_DEPENDENCIES)` cases out of `RunCMake.install`.
Diffstat (limited to 'Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux')
-rw-r--r--Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/topexe.c9
-rw-r--r--Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/toplib.c8
2 files changed, 0 insertions, 17 deletions
diff --git a/Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/topexe.c b/Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/topexe.c
deleted file mode 100644
index d196afe..0000000
--- a/Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/topexe.c
+++ /dev/null
@@ -1,9 +0,0 @@
-extern void test_rpath(void);
-extern void test_runpath(void);
-
-int main(void)
-{
- test_rpath();
- test_runpath();
- return 0;
-}
diff --git a/Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/toplib.c b/Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/toplib.c
deleted file mode 100644
index 040e591..0000000
--- a/Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/toplib.c
+++ /dev/null
@@ -1,8 +0,0 @@
-extern void test_rpath(void);
-extern void test_runpath(void);
-
-void toplib(void)
-{
- test_rpath();
- test_runpath();
-}