From bc8c890dd09cca6229cfa4a9de0dcacf0c9c4b2a Mon Sep 17 00:00:00 2001
From: "w.klijn" <w.klijn@fz-juelich.de>
Date: Thu, 7 Jul 2016 12:43:06 +0200
Subject: [PATCH] Removal of empty test directories

---
 tests/CMakeLists.txt             | 33 ++++++++++++++++----------------
 tests/delta/CMakeLists.txt       |  1 -
 tests/integration/CMakeLists.txt |  1 -
 tests/performance/CMakeLists.txt |  1 -
 tests/regression/CMakeLists.txt  |  1 -
 5 files changed, 16 insertions(+), 21 deletions(-)
 delete mode 100644 tests/delta/CMakeLists.txt
 delete mode 100644 tests/integration/CMakeLists.txt
 delete mode 100644 tests/performance/CMakeLists.txt
 delete mode 100644 tests/regression/CMakeLists.txt

diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index a2331e63..10fb65ef 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -1,28 +1,27 @@
-# Large test, employing the full simulator. 
-# validated using deltas on output data
-add_subdirectory(delta)
-
-# Test for the internode communication (eg. mpi)
-add_subdirectory(global_communication)
-
-# Test to check integration between components of the site_name
-add_subdirectory(integration)
-
-# Check for performance: This could include stand alone tests
-# These do not necessarily be run automatically
-add_subdirectory(performance)
-
-# Numbered tests based on bugs in the tracker
-add_subdirectory(regression)
 
 # google test framework
 add_library(gtest gtest-all.cpp)
-
 # tests look for gtest.h here
 include_directories(${CMAKE_CURRENT_SOURCE_DIR})
 
+
 # Unit tests
 add_subdirectory(unit)
 
 # Test validating models, possebly needing other software installed
 add_subdirectory(validation)
+
+# Test for the internode communication (eg. mpi)
+add_subdirectory(global_communication)
+
+
+# Proposed additional test types:
+
+# Large test, employing the full simulator. validated using deltas on output data
+
+# Test to check integration between components 
+
+# Tests for performance: This could include stand alone tests. These do not necessarily be run automatically
+
+# Numbered tests based on bugs in the tracker
+
diff --git a/tests/delta/CMakeLists.txt b/tests/delta/CMakeLists.txt
deleted file mode 100644
index f7d00015..00000000
--- a/tests/delta/CMakeLists.txt
+++ /dev/null
@@ -1 +0,0 @@
-# Nothing to be done yet
diff --git a/tests/integration/CMakeLists.txt b/tests/integration/CMakeLists.txt
deleted file mode 100644
index f7d00015..00000000
--- a/tests/integration/CMakeLists.txt
+++ /dev/null
@@ -1 +0,0 @@
-# Nothing to be done yet
diff --git a/tests/performance/CMakeLists.txt b/tests/performance/CMakeLists.txt
deleted file mode 100644
index f7d00015..00000000
--- a/tests/performance/CMakeLists.txt
+++ /dev/null
@@ -1 +0,0 @@
-# Nothing to be done yet
diff --git a/tests/regression/CMakeLists.txt b/tests/regression/CMakeLists.txt
deleted file mode 100644
index f7d00015..00000000
--- a/tests/regression/CMakeLists.txt
+++ /dev/null
@@ -1 +0,0 @@
-# Nothing to be done yet
-- 
GitLab