diff options
author | Brad King <brad.king@kitware.com> | 2020-06-16 15:02:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-06-16 15:17:55 (GMT) |
commit | 9ae33828553597c22a71ad64938a7a4d66d4ebc7 (patch) | |
tree | a92d2644cf9f8b1a85126abf5050acbdb472168c /Tests/RunCMake/file-GET_RUNTIME_DEPENDENCIES/linux | |
parent | 248d0570c9016392feb841ffce6ac77e194aefe8 (diff) | |
download | CMake-9ae33828553597c22a71ad64938a7a4d66d4ebc7.zip CMake-9ae33828553597c22a71ad64938a7a4d66d4ebc7.tar.gz CMake-9ae33828553597c22a71ad64938a7a4d66d4ebc7.tar.bz2 |
Tests: Shorten case names in RunCMake.file-GET_RUNTIME_DEPENDENCIES test
Now that these cases are in a dedicated test we can drop the
`file-GET_RUNTIME_DEPENDENCIES-` prefix from their name.
Diffstat (limited to 'Tests/RunCMake/file-GET_RUNTIME_DEPENDENCIES/linux')
-rw-r--r-- | Tests/RunCMake/file-GET_RUNTIME_DEPENDENCIES/linux/topexe.c | 9 | ||||
-rw-r--r-- | Tests/RunCMake/file-GET_RUNTIME_DEPENDENCIES/linux/toplib.c | 8 |
2 files changed, 17 insertions, 0 deletions
diff --git a/Tests/RunCMake/file-GET_RUNTIME_DEPENDENCIES/linux/topexe.c b/Tests/RunCMake/file-GET_RUNTIME_DEPENDENCIES/linux/topexe.c new file mode 100644 index 0000000..d196afe --- /dev/null +++ b/Tests/RunCMake/file-GET_RUNTIME_DEPENDENCIES/linux/topexe.c @@ -0,0 +1,9 @@ +extern void test_rpath(void); +extern void test_runpath(void); + +int main(void) +{ + test_rpath(); + test_runpath(); + return 0; +} diff --git a/Tests/RunCMake/file-GET_RUNTIME_DEPENDENCIES/linux/toplib.c b/Tests/RunCMake/file-GET_RUNTIME_DEPENDENCIES/linux/toplib.c new file mode 100644 index 0000000..040e591 --- /dev/null +++ b/Tests/RunCMake/file-GET_RUNTIME_DEPENDENCIES/linux/toplib.c @@ -0,0 +1,8 @@ +extern void test_rpath(void); +extern void test_runpath(void); + +void toplib(void) +{ + test_rpath(); + test_runpath(); +} |