From 06ed0f4eaace216ada4cf919e3a12c7fc08cdef6 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 27 Oct 2009 16:17:07 +0000 Subject: [PATCH] Consistent test source file naming (not the Ardour convention though, maybe should change, whatever). git-svn-id: svn://localhost/ardour2/branches/3.0@5944 d708f5d6-7413-0410-9779-e7cbd77b26cf --- .../test/{interpolation-test.cc => InterpolationTest.cpp} | 2 +- libs/ardour/test/{interpolation-test.h => InterpolationTest.h} | 0 libs/ardour/wscript | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename libs/ardour/test/{interpolation-test.cc => InterpolationTest.cpp} (99%) rename libs/ardour/test/{interpolation-test.h => InterpolationTest.h} (100%) diff --git a/libs/ardour/test/interpolation-test.cc b/libs/ardour/test/InterpolationTest.cpp similarity index 99% rename from libs/ardour/test/interpolation-test.cc rename to libs/ardour/test/InterpolationTest.cpp index 45e350d12b..ababe84cf7 100644 --- a/libs/ardour/test/interpolation-test.cc +++ b/libs/ardour/test/InterpolationTest.cpp @@ -1,5 +1,5 @@ #include -#include "interpolation-test.h" +#include "InterpolationTest.h" CPPUNIT_TEST_SUITE_REGISTRATION( InterpolationTest ); diff --git a/libs/ardour/test/interpolation-test.h b/libs/ardour/test/InterpolationTest.h similarity index 100% rename from libs/ardour/test/interpolation-test.h rename to libs/ardour/test/InterpolationTest.h diff --git a/libs/ardour/wscript b/libs/ardour/wscript index 512624ed86..57b2a6cdeb 100644 --- a/libs/ardour/wscript +++ b/libs/ardour/wscript @@ -318,7 +318,7 @@ def build(bld): testobj.source = ''' interpolation.cc test/BBTTest.cpp - test/interpolation-test.cc + test/InterpolationTest.cpp test/testrunner.cpp ''' testobj.includes = obj.includes + ['../pbd/']