diff --git a/src/test/Makefile b/src/test/Makefile index 702b26c..cfc36b5 100644 --- a/src/test/Makefile +++ b/src/test/Makefile @@ -4,20 +4,20 @@ EXECUTABLE := all_test.bin CXX := g++ # CXXFLAGS := -O2 -CXXFLAGS := -g -std=c++20 -DEFINES := -DCPU=x86 -DDEBUG=1 -DOUTPUT_FOLDER=$(OUTPUT_FOLDER) -INCLUDES := -I../../CMSIS_5/CMSIS/DSP/Include/ \ +CXXFLAGS = -g -std=c++20 +DEFINES = -DCPU=x86 -DDEBUG -DOUTPUT_FOLDER=$(OUTPUT_FOLDER) +INCLUDES = -I../../CMSIS_5/CMSIS/DSP/Include/ \ -I../../CMSIS_5/CMSIS/Core/Include/ \ - -I../../Synth_Dexed/src + -I../../Synth_Dexed/src/ # -I../../circle-stdlib/libs/circle/include \ # -I../../circle-stdlib/libs/circle/addon \ -GCC := $(CXX) $(INCLUDES) $(CXXFLAGS) LD := g++ LIBS := -lm -lstdc++ -lgtest -lpthread -SRCS = $(filter-out waveplay.cpp, $(wildcard *.cpp)) +SRCS := $(filter-out waveplay.cpp, $(wildcard *.cpp)) SRCS += ../fx.cpp +SRCS += ../fx_components.cpp SRCS += ../fx_svf.cpp SRCS += ../fx_tube.cpp SRCS += ../fx_chorus.cpp @@ -30,8 +30,8 @@ SRCS += ../fx_shimmer_reverb.cpp SRCS += ../fx_dry.cpp SRCS += ../fx_rack.cpp -OBJS = $(SRCS:.cpp=.o) -# OBJS = $(addprefix $(OBJDIR)/,$(OBJ)) +OBJ = $(SRCS:.cpp=.o) +OBJS = $(addprefix $(OBJDIR)/,$(OBJ)) all: $(EXECUTABLE) @@ -45,16 +45,12 @@ $(OBJDIR): mkdir -p $(OBJDIR) $(OBJDIR)/%.o: %.cpp $(OBJDIR) - $(CXX) $(DEFINES) $(INCLUDES) $(CXXFLAGS) -c $< -o $@ - # mv -f $@ $(OBJDIR) + $(CXX) $(CXXFLAGS) $(DEFINES) $(INCLUDES) -c $< -o $@ test_mixing_console.cpp: ../mixing_console.h ../mixing_console.cpp touch $@ $(EXECUTABLE): $(OBJS) - echo "***************************" - echo $(OBJS) - echo "***************************" $(LD) $(OBJS) -o $@ $(LIBS) $(OUTPUT_FOLDER): diff --git a/src/test/desktop.ini b/src/test/desktop.ini deleted file mode 100644 index bb9f3d6..0000000 --- a/src/test/desktop.ini +++ /dev/null @@ -1,4 +0,0 @@ -[ViewState] -Mode= -Vid= -FolderType=Generic diff --git a/src/test/test_fixture.cpp b/src/test/test_fixture.cpp deleted file mode 100644 index 56d6680..0000000 --- a/src/test/test_fixture.cpp +++ /dev/null @@ -1,44 +0,0 @@ -#include "test_fixture.h" - -#include -#include -#include -#include -#include -#include - -void setupOuputStreamFocCSV(std::ostream& out) -{ - struct comma_separator : numpunct - { - virtual char do_decimal_point() const override { return ','; } - }; - - out.imbue(locale(out.getloc(), new comma_separator)); - out << fixed << showpoint; -} - -FxComponentFixture::FxComponentFixture() : - testing::Test(), - gen_(rd_()), - dist_(-1.0f, 1.0f) -{ -} - -void FxComponentFixture::SetUp() -{ -} - -void FxComponentFixture::TearDown() -{ -} - -string FxComponentFixture::getResultFile(const std::string& filename) -{ - return std::string(STR(OUTPUT_FOLDER)) + "/" + filename; -} - -float32_t FxComponentFixture::getRandomValue() -{ - return this->dist_(this->gen_); -} diff --git a/src/test/test_fixture.h b/src/test/test_fixture.h deleted file mode 100644 index a795365..0000000 --- a/src/test/test_fixture.h +++ /dev/null @@ -1,32 +0,0 @@ -#pragma once - -#include - -#include -#include -#include -#include -#include - -#include "../fx.h" - -#define STR(x) #x - -void setupOuputStreamFocCSV(std::ostream& out); - -class FxComponentFixture : public testing::Test -{ -public: - FxComponentFixture(); - - virtual void SetUp() override; - virtual void TearDown() override; - - std::string getResultFile(const string& filename); - - float32_t getRandomValue(); - - random_device rd_; - mt19937 gen_; - uniform_real_distribution dist_; -}; diff --git a/src/test/test_fx_helper.cpp b/src/test/test_fx_helper.cpp index bd5b8fc..9dc1775 100644 --- a/src/test/test_fx_helper.cpp +++ b/src/test/test_fx_helper.cpp @@ -83,3 +83,40 @@ string getScenarioName(int scenario) return ss.str(); } + + +void setupOuputStreamFocCSV(std::ostream& out) +{ + struct comma_separator : numpunct + { + virtual char do_decimal_point() const override { return ','; } + }; + + out.imbue(locale(out.getloc(), new comma_separator)); + out << fixed << showpoint; +} + +FxComponentFixture::FxComponentFixture() : + testing::Test(), + gen_(rd_()), + dist_(-1.0f, 1.0f) +{ +} + +void FxComponentFixture::SetUp() +{ +} + +void FxComponentFixture::TearDown() +{ +} + +string FxComponentFixture::getResultFile(const std::string& filename) +{ + return std::string(STR(OUTPUT_FOLDER)) + "/" + filename; +} + +float32_t FxComponentFixture::getRandomValue() +{ + return this->dist_(this->gen_); +} diff --git a/src/test/test_fx_helper.h b/src/test/test_fx_helper.h index 4e07b03..5282637 100644 --- a/src/test/test_fx_helper.h +++ b/src/test/test_fx_helper.h @@ -1,16 +1,21 @@ #pragma once -#include "test_fixture.h" +#include +#include +#include +#include "../fx.h" #include "../mixing_console_constants.h" #define AUDIO_SOURCE_FILE "test.wav" #define SAMPLING_FREQUENCY 44100.0f +#define STR(x) #x + #define Active(scenarioKey, FxID) ((scenarioKey & (1 << FxID)) == (1 << FxID)) -string getScenarioName(int scenario); +std::string getScenarioName(int scenario); enum FXSwitch { @@ -27,3 +32,22 @@ enum FXSwitch class FXScenarioTest : public testing::TestWithParam { }; + +void setupOuputStreamFocCSV(std::ostream& out); + +class FxComponentFixture : public testing::Test +{ +public: + FxComponentFixture(); + + virtual void SetUp() override; + virtual void TearDown() override; + + std::string getResultFile(const string& filename); + + float32_t getRandomValue(); + + random_device rd_; + mt19937 gen_; + uniform_real_distribution dist_; +};