From 8f88c063b65ab3bad88aae3aedfd4b38283f7b33 Mon Sep 17 00:00:00 2001
From: Matthieu Schaller <matthieu.schaller@durham.ac.uk>
Date: Wed, 17 Aug 2016 12:43:23 +0100
Subject: [PATCH] Applied the usual naming convention to the new threadpool
 test

---
 .gitignore                                    | 1 +
 tests/Makefile.am                             | 6 +++---
 tests/{threadpool_test.c => testThreadpool.c} | 0
 tests/testTimeIntegration.c                   | 1 -
 4 files changed, 4 insertions(+), 4 deletions(-)
 rename tests/{threadpool_test.c => testThreadpool.c} (100%)

diff --git a/.gitignore b/.gitignore
index 1a43373acd..aa3676fe29 100644
--- a/.gitignore
+++ b/.gitignore
@@ -62,6 +62,7 @@ tests/testFFT
 tests/testInteractions
 tests/testSymmetry
 tests/testMaths
+tests/testThreadpool
 tests/testParser
 tests/parser_output.yml
 tests/test27cells.sh
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 435e1f717f..952787823d 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -24,13 +24,13 @@ AM_LDFLAGS = ../src/.libs/libswiftsim.a $(HDF5_LDFLAGS) $(HDF5_LIBS) $(FFTW_LIBS
 TESTS = testGreetings testMaths testReading.sh testSingle testKernel testSymmetry \
         testPair.sh testPairPerturbed.sh test27cells.sh test27cellsPerturbed.sh  \
         testParser.sh testSPHStep test125cells.sh testKernelGrav testFFT \
-        threadpool_test
+	testThreadpool
 
 # List of test programs to compile
 check_PROGRAMS = testGreetings testReading testSingle testTimeIntegration \
 		 testSPHStep testPair test27cells test125cells testParser \
                  testKernel testKernelGrav testFFT testInteractions testMaths \
-                 testSymmetry threadpool_test
+                 testSymmetry testThreadpool
 
 # Sources for the individual programs
 testGreetings_SOURCES = testGreetings.c
@@ -63,7 +63,7 @@ testFFT_SOURCES = testFFT.c
 
 testInteractions_SOURCES = testInteractions.c
 
-threadpool_test_SOURCES = threadpool_test.c
+testThreadpool_SOURCES = testThreadpool.c
 
 # Files necessary for distribution
 EXTRA_DIST = testReading.sh makeInput.py testPair.sh testPairPerturbed.sh \
diff --git a/tests/threadpool_test.c b/tests/testThreadpool.c
similarity index 100%
rename from tests/threadpool_test.c
rename to tests/testThreadpool.c
diff --git a/tests/testTimeIntegration.c b/tests/testTimeIntegration.c
index 2e7290e614..f39adaee90 100644
--- a/tests/testTimeIntegration.c
+++ b/tests/testTimeIntegration.c
@@ -116,7 +116,6 @@ int main() {
 
     /* Kick... */
     runner_do_kick(&run, &c, 0);
-
   }
 
   /* Clean-up */
-- 
GitLab