Files
CMake/Tests/RunCMake/file-GET_RUNTIME_DEPENDENCIES/linux/topexe.c
T
Brad King 9ae3382855 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.
2020-06-16 11:17:55 -04:00

10 lines
128 B
C

extern void test_rpath(void);
extern void test_runpath(void);
int main(void)
{
test_rpath();
test_runpath();
return 0;
}