summaryrefslogtreecommitdiff
path: root/Tests/Testing
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-08-11 09:56:02 -0400
committerBrad King <brad.king@kitware.com>2009-08-11 09:56:02 -0400
commit875c478b64de0e0986394e2d642254f7943ec588 (patch)
tree6d0f976715e3434f2f0d08c87eaf59e6e1c80070 /Tests/Testing
parentd2e1f2b4d6d87c171464b5dc41b00b609c90bf26 (diff)
downloadcmake-875c478b64de0e0986394e2d642254f7943ec588.tar.gz
Test add_test() generator expressions
This teaches the 'testing' test to try generator expressions in arguments to add_test(NAME). This test case mimics a common use-case of passing executables to test driver scripts. We excercise the syntax for per-configuration target file names.
Diffstat (limited to 'Tests/Testing')
-rw-r--r--Tests/Testing/CMakeLists.txt27
-rw-r--r--Tests/Testing/driver.cmake40
-rw-r--r--Tests/Testing/pcShared.c5
-rw-r--r--Tests/Testing/pcShared.h16
-rw-r--r--Tests/Testing/pcStatic.c4
-rw-r--r--Tests/Testing/perconfig.c4
6 files changed, 96 insertions, 0 deletions
diff --git a/Tests/Testing/CMakeLists.txt b/Tests/Testing/CMakeLists.txt
index 462f20f591..f85740705c 100644
--- a/Tests/Testing/CMakeLists.txt
+++ b/Tests/Testing/CMakeLists.txt
@@ -54,7 +54,34 @@ ADD_TEST(testing.1 ${Testing_BINARY_DIR}/bin/testing)
ADD_SUBDIRECTORY(Sub/Sub2)
# Per-config target name test.
+ADD_LIBRARY(pcStatic STATIC pcStatic.c)
+SET_PROPERTY(TARGET pcStatic PROPERTY RELEASE_POSTFIX -opt)
+SET_PROPERTY(TARGET pcStatic PROPERTY DEBUG_POSTFIX -dbg)
+ADD_LIBRARY(pcShared SHARED pcShared.c)
+SET_PROPERTY(TARGET pcShared PROPERTY RELEASE_POSTFIX -opt)
+SET_PROPERTY(TARGET pcShared PROPERTY DEBUG_POSTFIX -dbg)
+SET_PROPERTY(TARGET pcShared PROPERTY VERSION 1.2)
+SET_PROPERTY(TARGET pcShared PROPERTY SOVERSION 3)
+IF(NOT WIN32)
+ SET(soname_file -DpcShared_soname_file=$<TARGET_SONAME_FILE:pcShared>)
+ENDIF()
ADD_EXECUTABLE(perconfig perconfig.c)
+TARGET_LINK_LIBRARIES(perconfig pcStatic pcShared)
SET_PROPERTY(TARGET perconfig PROPERTY RELEASE_POSTFIX -opt)
SET_PROPERTY(TARGET perconfig PROPERTY DEBUG_POSTFIX -dbg)
ADD_TEST(NAME testing.perconfig COMMAND perconfig)
+
+# Test using a driver script with generator expressions.
+ADD_TEST(NAME testing.driver
+ COMMAND ${CMAKE_COMMAND}
+ -Dconfiguration=$<CONFIGURATION>
+ -Dperconfig_file_dir=$<TARGET_FILE_DIR:perconfig>
+ -Dperconfig_file_name=$<TARGET_FILE_NAME:perconfig>
+ -Dperconfig_file=$<TARGET_FILE:perconfig>
+ -DpcStatic_file=$<TARGET_FILE:pcStatic>
+ -DpcStatic_linker_file=$<TARGET_LINKER_FILE:pcStatic>
+ -DpcShared_file=$<TARGET_FILE:pcShared>
+ -DpcShared_linker_file=$<TARGET_LINKER_FILE:pcShared>
+ ${soname_file}
+ -P ${Testing_SOURCE_DIR}/driver.cmake
+ )
diff --git a/Tests/Testing/driver.cmake b/Tests/Testing/driver.cmake
new file mode 100644
index 0000000000..4a93acc6cf
--- /dev/null
+++ b/Tests/Testing/driver.cmake
@@ -0,0 +1,40 @@
+# Print values for human reference.
+foreach(v
+ configuration
+ perconfig_file_dir
+ perconfig_file_name
+ perconfig_file
+ pcStatic_file
+ pcStatic_linker_file
+ pcShared_file
+ pcShared_linker_file
+ pcShared_soname_file
+ )
+ message("${v}=${${v}}")
+endforeach()
+
+# Verify that file names match as expected.
+set(pc_file_components ${perconfig_file_dir}/${perconfig_file_name})
+if(NOT "${pc_file_components}" STREQUAL "${perconfig_file}")
+ message(SEND_ERROR
+ "File components ${pc_file_components} do not match ${perconfig_file}")
+endif()
+if(NOT "${pcStatic_file}" STREQUAL "${pcStatic_linker_file}")
+ message(SEND_ERROR
+ "pcStatic_file does not match pcStatic_linker_file:\n"
+ " ${pcStatic_file}\n"
+ " ${pcStatic_linker_file}\n"
+ )
+endif()
+
+# Verify that the implementation files are named correctly.
+foreach(lib pcStatic pcShared)
+ file(STRINGS "${${lib}_file}" info LIMIT_COUNT 1 REGEX "INFO:[^[]*\\[")
+ if(NOT "${info}" MATCHES ".*INFO:symbol\\[${lib}\\].*")
+ message(SEND_ERROR "No INFO:symbol[${lib}] found in:\n ${${lib}_file}")
+ endif()
+endforeach()
+execute_process(COMMAND ${perconfig_file} RESULT_VARIABLE result)
+if(result)
+ message(SEND_ERROR "Error running:\n ${perconfig_file}\n(${result})")
+endif()
diff --git a/Tests/Testing/pcShared.c b/Tests/Testing/pcShared.c
new file mode 100644
index 0000000000..b08fadc948
--- /dev/null
+++ b/Tests/Testing/pcShared.c
@@ -0,0 +1,5 @@
+#include "pcShared.h"
+const char* pcShared(void)
+{
+ return "INFO:symbol[pcShared]";
+}
diff --git a/Tests/Testing/pcShared.h b/Tests/Testing/pcShared.h
new file mode 100644
index 0000000000..59a6ef43bc
--- /dev/null
+++ b/Tests/Testing/pcShared.h
@@ -0,0 +1,16 @@
+#ifndef pcShared_h
+#define pcShared_h
+
+#ifdef _WIN32
+# ifdef pcShared_EXPORTS
+# define PC_EXPORT __declspec(dllexport)
+# else
+# define PC_EXPORT __declspec(dllimport)
+# endif
+#else
+# define PC_EXPORT
+#endif
+
+PC_EXPORT const char* pcShared(void);
+
+#endif
diff --git a/Tests/Testing/pcStatic.c b/Tests/Testing/pcStatic.c
new file mode 100644
index 0000000000..7e1bf512d0
--- /dev/null
+++ b/Tests/Testing/pcStatic.c
@@ -0,0 +1,4 @@
+const char* pcStatic(void)
+{
+ return "INFO:symbol[pcStatic]";
+}
diff --git a/Tests/Testing/perconfig.c b/Tests/Testing/perconfig.c
index f8b643afbf..d942d4562c 100644
--- a/Tests/Testing/perconfig.c
+++ b/Tests/Testing/perconfig.c
@@ -1,4 +1,8 @@
+#include "pcShared.h"
+extern const char* pcStatic(void);
int main()
{
+ pcStatic();
+ pcShared();
return 0;
}