46 lines
1.5 KiB
Text
46 lines
1.5 KiB
Text
|
|
/*
|
||
|
|
Crafter® Build
|
||
|
|
Copyright (C) 2026 Catcrafts®
|
||
|
|
Catcrafts.net
|
||
|
|
|
||
|
|
This library is free software; you can redistribute it and/or
|
||
|
|
modify it under the terms of the GNU Lesser General Public
|
||
|
|
License version 3.0 as published by the Free Software Foundation;
|
||
|
|
|
||
|
|
This library is distributed in the hope that it will be useful,
|
||
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
|
Lesser General Public License for more details.
|
||
|
|
|
||
|
|
You should have received a copy of the GNU Lesser General Public
|
||
|
|
License along with this library; if not, write to the Free Software
|
||
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
|
*/
|
||
|
|
|
||
|
|
module;
|
||
|
|
#include "Crafter.Build-Api.h"
|
||
|
|
export module Crafter.Build:Test;
|
||
|
|
import std;
|
||
|
|
import :Clang;
|
||
|
|
|
||
|
|
export namespace Crafter {
|
||
|
|
struct RunTestsOptions {
|
||
|
|
std::vector<std::string> globs;
|
||
|
|
int jobs = 0;
|
||
|
|
std::optional<std::chrono::seconds> timeoutOverride;
|
||
|
|
bool listOnly = false;
|
||
|
|
};
|
||
|
|
|
||
|
|
struct TestSummary {
|
||
|
|
int passed = 0;
|
||
|
|
int failed = 0;
|
||
|
|
int crashed = 0;
|
||
|
|
int timedOut = 0;
|
||
|
|
int skipped = 0;
|
||
|
|
std::vector<TestResult> results;
|
||
|
|
bool AllPassed() const { return failed == 0 && crashed == 0 && timedOut == 0; }
|
||
|
|
};
|
||
|
|
|
||
|
|
CRAFTER_API TestSummary RunTests(Configuration& projectCfg, const RunTestsOptions& opts);
|
||
|
|
CRAFTER_API TestResult RunSingleTest(const Test& test, const std::filesystem::path& binary, std::chrono::seconds timeout);
|
||
|
|
}
|