diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 587d251..995a9f1 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -26,10 +26,7 @@ "USE_GPSD=1", "DStarGateway/dstargateway" ], - "group": { - "kind": "build", - "isDefault": true - }, + "group": "build", "problemMatcher": [] }, { @@ -94,7 +91,10 @@ "ENABLE_DEBUG=1", "USE_GPSD=1" ], - "group": "build", + "group": { + "kind": "build", + "isDefault": true + }, "problemMatcher": [] } ] diff --git a/Tests/AMBEFileReader/read.cpp b/Tests/AMBEFileReader/read.cpp index 99f7bf4..a60b8e6 100644 --- a/Tests/AMBEFileReader/read.cpp +++ b/Tests/AMBEFileReader/read.cpp @@ -21,6 +21,7 @@ #include #include "AMBEFileReader.h" +#include "Log.h" namespace AMBEFileReaderTests { @@ -55,6 +56,10 @@ namespace AMBEFileReaderTests { std::string indexFile = std::string(std::filesystem::current_path()) + "/Tests/AMBEFileReader/fr_FR.indx"; std::string ambeFile = std::string(std::filesystem::current_path()) + "/Tests/AMBEFileReader/fr_FR.ambe"; + + CLog::logInfo("Reading file: %s", indexFile.c_str()); + CLog::logInfo("Reading file: %s", ambeFile.c_str()); + CAMBEFileReader reader(indexFile, ambeFile); bool res = reader.read(); EXPECT_TRUE(res) << "read shall return true on existent files";