Fixed platform and latency tests broken build, see #200

Added platform and latency tests build to build.sh script
Changed daemon version to 2.0.4
This commit is contained in:
Andrea Bondavalli 2025-03-12 10:05:09 +01:00
parent 29dc02ddc5
commit efe723e464
3 changed files with 6 additions and 2 deletions

View File

@ -43,4 +43,7 @@ cmake \
.
make
cd ..
cd test
make
cd ..

View File

@ -1,7 +1,7 @@
//
// main.cpp
//
// Copyright (c) 2019 2020 Andrea Bondavalli. All rights reserved.
// Copyright (c) 2019 2025 Andrea Bondavalli. All rights reserved.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@ -43,7 +43,7 @@ namespace po = boost::program_options;
namespace postyle = boost::program_options::command_line_style;
namespace logging = boost::log;
static const std::string version("bondagit-2.0.3");
static const std::string version("bondagit-2.0.4");
static std::atomic<bool> terminate = false;
void termination_handler(int signum) {

View File

@ -1,6 +1,7 @@
// basic file operations
#include <iostream>
#include <fstream>
#include <cstdint>
using namespace std;