summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-04-03 22:18:22 +0200
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2016-04-25 22:19:30 +0200
commit04ca3af777a18ba9148110500d3d9ad3f6210895 (patch)
tree066962e24c16a2e4016462d2d35abfb40acb6cf5
parentd4f864b1915ef1765e9a86539c0c0b0f47e6d8f2 (diff)
Run integration tests as last test
-rw-r--r--CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 69baa48..19f0b81 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -324,9 +324,6 @@ IF (TEST)
${EXPAT_LIBRARIES}
)
- # Register the integration test suite
- ADD_TEST(ousia_test_integration ousia_test_integration)
-
# Build the unit tests if GTEST had been found
IF (GTEST)
INCLUDE_DIRECTORIES(
@@ -469,6 +466,9 @@ IF (TEST)
ADD_TEST(ousia_test_osxml ousia_test_osxml)
ADD_TEST(ousia_test_xml ousia_test_xml)
ENDIF()
+
+ # Register the integration test suite
+ ADD_TEST(ousia_test_integration ousia_test_integration)
ENDIF()
################################################################################