2016-07-25 19:37:48 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Our harness for running test cases, and reusable checks.
|
|
|
|
//
|
|
|
|
// Copyright 2016 whitequark
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include <regex>
|
2016-08-01 03:52:12 +00:00
|
|
|
#include <cairo.h>
|
Use the same code for loading resources in all executables.
All of our executables need resources; e.g. the vector font is
a resource and it is necessary for generation. Before this commit,
the GUI executable loaded the resources in a nice way, and everything
else did it in a very ad-hoc, fragile way.
After this commit, all executables are placed in <build>/bin and
follow the same algorithm:
* On Windows, resources are compiled and linked into every
executable.
* On Linux, resources are copied into <build>/res (which is
tried first) and <prefix>/share/solvespace (which is tried
second).
* On macOS, resources are copied into <build>/res (which is
tried first) and <build>/bin/solvespace.app/Contents/Resources
(which is tried second).
In practice this means that we can add as many executables as we want
without duplicating lots of code. In addition, on macOS, we can
place supplementary executables into the bundle, and they can use
resources from the bundle transparently.
2016-11-28 04:16:18 +00:00
|
|
|
|
|
|
|
#include "harness.h"
|
|
|
|
|
2016-07-25 19:37:48 +00:00
|
|
|
#if defined(WIN32)
|
Use the same code for loading resources in all executables.
All of our executables need resources; e.g. the vector font is
a resource and it is necessary for generation. Before this commit,
the GUI executable loaded the resources in a nice way, and everything
else did it in a very ad-hoc, fragile way.
After this commit, all executables are placed in <build>/bin and
follow the same algorithm:
* On Windows, resources are compiled and linked into every
executable.
* On Linux, resources are copied into <build>/res (which is
tried first) and <prefix>/share/solvespace (which is tried
second).
* On macOS, resources are copied into <build>/res (which is
tried first) and <build>/bin/solvespace.app/Contents/Resources
(which is tried second).
In practice this means that we can add as many executables as we want
without duplicating lots of code. In addition, on macOS, we can
place supplementary executables into the bundle, and they can use
resources from the bundle transparently.
2016-11-28 04:16:18 +00:00
|
|
|
# include <windows.h>
|
2016-07-25 19:37:48 +00:00
|
|
|
#else
|
Use the same code for loading resources in all executables.
All of our executables need resources; e.g. the vector font is
a resource and it is necessary for generation. Before this commit,
the GUI executable loaded the resources in a nice way, and everything
else did it in a very ad-hoc, fragile way.
After this commit, all executables are placed in <build>/bin and
follow the same algorithm:
* On Windows, resources are compiled and linked into every
executable.
* On Linux, resources are copied into <build>/res (which is
tried first) and <prefix>/share/solvespace (which is tried
second).
* On macOS, resources are copied into <build>/res (which is
tried first) and <build>/bin/solvespace.app/Contents/Resources
(which is tried second).
In practice this means that we can add as many executables as we want
without duplicating lots of code. In addition, on macOS, we can
place supplementary executables into the bundle, and they can use
resources from the bundle transparently.
2016-11-28 04:16:18 +00:00
|
|
|
# include <unistd.h>
|
2016-07-25 19:37:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace SolveSpace {
|
2018-07-18 02:20:25 +00:00
|
|
|
namespace Platform {
|
2016-07-25 19:37:48 +00:00
|
|
|
// These are defined in headless.cpp, and aren't exposed in solvespace.h.
|
2017-03-11 14:43:21 +00:00
|
|
|
extern std::vector<Platform::Path> fontFiles;
|
2016-07-25 19:37:48 +00:00
|
|
|
}
|
2018-07-18 02:20:25 +00:00
|
|
|
}
|
2016-07-25 19:37:48 +00:00
|
|
|
|
2018-01-02 21:20:30 +00:00
|
|
|
|
|
|
|
#ifdef TEST_BUILD_ON_WINDOWS
|
|
|
|
static char BUILD_PATH_SEP = '\\';
|
|
|
|
#else
|
|
|
|
static char BUILD_PATH_SEP = '/';
|
|
|
|
#endif
|
2016-07-25 19:37:48 +00:00
|
|
|
|
|
|
|
static std::string BuildRoot() {
|
|
|
|
static std::string rootDir;
|
|
|
|
if(!rootDir.empty()) return rootDir;
|
|
|
|
|
|
|
|
rootDir = __FILE__;
|
|
|
|
rootDir.erase(rootDir.rfind(BUILD_PATH_SEP) + 1);
|
|
|
|
return rootDir;
|
|
|
|
}
|
|
|
|
|
2017-03-11 14:43:21 +00:00
|
|
|
static Platform::Path HostRoot() {
|
|
|
|
static Platform::Path rootDir;
|
|
|
|
if(!rootDir.IsEmpty()) return rootDir;
|
2016-07-25 19:37:48 +00:00
|
|
|
|
|
|
|
// No especially good way to do this, so let's assume somewhere up from
|
|
|
|
// the current directory there's our repository, with CMakeLists.txt, and
|
|
|
|
// pivot from there.
|
2017-03-11 14:43:21 +00:00
|
|
|
rootDir = Platform::Path::CurrentDirectory();
|
2016-07-25 19:37:48 +00:00
|
|
|
|
|
|
|
// We're never more than four levels deep.
|
|
|
|
for(size_t i = 0; i < 4; i++) {
|
2017-03-11 14:43:21 +00:00
|
|
|
FILE *f = OpenFile(rootDir.Join("CMakeLists.txt"), "r");
|
2016-07-25 19:37:48 +00:00
|
|
|
if(f) {
|
|
|
|
fclose(f);
|
2017-03-11 14:43:21 +00:00
|
|
|
rootDir = rootDir.Join("test");
|
2016-07-25 19:37:48 +00:00
|
|
|
return rootDir;
|
|
|
|
}
|
2017-03-11 14:43:21 +00:00
|
|
|
rootDir = rootDir.Parent();
|
2016-07-25 19:37:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ssassert(false, "Couldn't locate repository root");
|
|
|
|
}
|
|
|
|
|
|
|
|
enum class Color {
|
|
|
|
Red,
|
|
|
|
Green,
|
|
|
|
DarkGreen
|
|
|
|
};
|
|
|
|
|
|
|
|
static std::string Colorize(Color color, std::string input) {
|
|
|
|
#if !defined(WIN32)
|
|
|
|
if(isatty(fileno(stdout))) {
|
|
|
|
switch(color) {
|
|
|
|
case Color::Red:
|
|
|
|
return "\e[1;31m" + input + "\e[0m";
|
|
|
|
case Color::Green:
|
|
|
|
return "\e[1;32m" + input + "\e[0m";
|
|
|
|
case Color::DarkGreen:
|
|
|
|
return "\e[36m" + input + "\e[0m";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return input;
|
|
|
|
}
|
|
|
|
|
2016-07-31 08:43:33 +00:00
|
|
|
// Normalizes a savefile. Different platforms have slightly different floating-point
|
|
|
|
// behavior, so if we want to compare savefiles byte-by-byte, we need to do something
|
|
|
|
// to get rid of irrelevant differences in LSB.
|
|
|
|
static std::string PrepareSavefile(std::string data) {
|
|
|
|
// Round everything to 2**30 ~ 1e9
|
|
|
|
const double precision = pow(2, 30);
|
|
|
|
|
2016-11-02 03:43:29 +00:00
|
|
|
size_t lineBegin = 0;
|
|
|
|
while(lineBegin < data.length()) {
|
|
|
|
size_t nextLineBegin = data.find('\n', lineBegin);
|
|
|
|
if(nextLineBegin == std::string::npos) {
|
|
|
|
nextLineBegin = data.length();
|
|
|
|
} else {
|
|
|
|
nextLineBegin++;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t eqPos = data.find('=', lineBegin);
|
|
|
|
if(eqPos < nextLineBegin) {
|
|
|
|
std::string key = data.substr(lineBegin, eqPos - lineBegin),
|
|
|
|
value = data.substr(eqPos + 1, nextLineBegin - eqPos - 2);
|
2017-03-09 17:48:44 +00:00
|
|
|
|
2016-07-31 08:43:33 +00:00
|
|
|
for(int i = 0; SolveSpaceUI::SAVED[i].type != 0; i++) {
|
|
|
|
if(SolveSpaceUI::SAVED[i].fmt != 'f') continue;
|
2016-11-02 03:43:29 +00:00
|
|
|
if(SolveSpaceUI::SAVED[i].desc != key) continue;
|
2016-07-31 08:43:33 +00:00
|
|
|
double f = strtod(value.c_str(), NULL);
|
|
|
|
f = round(f * precision) / precision;
|
|
|
|
std::string newValue = ssprintf("%.20f", f);
|
|
|
|
ssassert(value.size() == newValue.size(), "Expected no change in value length");
|
|
|
|
std::copy(newValue.begin(), newValue.end(),
|
|
|
|
data.begin() + eqPos + 1);
|
|
|
|
}
|
2017-03-09 17:48:44 +00:00
|
|
|
|
|
|
|
if(key == "Group.impFile") {
|
|
|
|
data.erase(lineBegin, nextLineBegin - lineBegin);
|
|
|
|
nextLineBegin = lineBegin;
|
|
|
|
}
|
2016-07-31 08:43:33 +00:00
|
|
|
}
|
|
|
|
|
2016-11-02 03:43:29 +00:00
|
|
|
size_t spPos = data.find(' ', lineBegin);
|
|
|
|
if(spPos < nextLineBegin) {
|
|
|
|
std::string cmd = data.substr(lineBegin, spPos - lineBegin);
|
|
|
|
if(!cmd.empty()) {
|
|
|
|
if(cmd == "Surface" || cmd == "SCtrl" || cmd == "TrimBy" ||
|
|
|
|
cmd == "Curve" || cmd == "CCtrl" || cmd == "CurvePt") {
|
|
|
|
data.erase(lineBegin, nextLineBegin - lineBegin);
|
|
|
|
nextLineBegin = lineBegin;
|
|
|
|
}
|
2016-08-02 17:38:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-02 03:43:29 +00:00
|
|
|
lineBegin = nextLineBegin;
|
2016-07-31 08:43:33 +00:00
|
|
|
}
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2016-07-25 19:37:48 +00:00
|
|
|
bool Test::Helper::RecordCheck(bool success) {
|
|
|
|
checkCount++;
|
|
|
|
if(!success) failCount++;
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Test::Helper::PrintFailure(const char *file, int line, std::string msg) {
|
|
|
|
std::string shortFile = file;
|
|
|
|
shortFile.erase(0, BuildRoot().size());
|
|
|
|
fprintf(stderr, "test%c%s:%d: FAILED: %s\n",
|
|
|
|
BUILD_PATH_SEP, shortFile.c_str(), line, msg.c_str());
|
|
|
|
}
|
|
|
|
|
2017-03-11 14:43:21 +00:00
|
|
|
Platform::Path Test::Helper::GetAssetPath(std::string testFile, std::string assetName,
|
|
|
|
std::string mangle) {
|
2016-07-25 19:37:48 +00:00
|
|
|
if(!mangle.empty()) {
|
|
|
|
assetName.insert(assetName.rfind('.'), "." + mangle);
|
|
|
|
}
|
|
|
|
testFile.erase(0, BuildRoot().size());
|
|
|
|
testFile.erase(testFile.rfind(BUILD_PATH_SEP) + 1);
|
2017-03-11 14:43:21 +00:00
|
|
|
return HostRoot().Join(Platform::Path::FromPortable(testFile + assetName));
|
2016-07-25 19:37:48 +00:00
|
|
|
}
|
|
|
|
|
2017-03-09 14:44:32 +00:00
|
|
|
bool Test::Helper::CheckBool(const char *file, int line, const char *expr, bool value,
|
|
|
|
bool reference) {
|
|
|
|
if(!RecordCheck(value == reference)) {
|
|
|
|
std::string msg = ssprintf("(%s) = %s ≠ %s", expr,
|
|
|
|
value ? "true" : "false",
|
|
|
|
reference ? "true" : "false");
|
|
|
|
PrintFailure(file, line, msg);
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Test::Helper::CheckEqualString(const char *file, int line, const char *valueExpr,
|
|
|
|
const std::string &value, const std::string &reference) {
|
|
|
|
if(!RecordCheck(value == reference)) {
|
|
|
|
std::string msg = ssprintf("(%s) = \"%s\" ≠ \"%s\"", valueExpr,
|
|
|
|
value.c_str(), reference.c_str());
|
|
|
|
PrintFailure(file, line, msg);
|
2016-07-25 19:37:48 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-13 11:06:29 +00:00
|
|
|
bool Test::Helper::CheckEqualEpsilon(const char *file, int line, const char *valueExpr,
|
|
|
|
double value, double reference) {
|
|
|
|
bool result = fabs(value - reference) < LENGTH_EPS;
|
|
|
|
if(!RecordCheck(result)) {
|
2017-03-09 14:44:32 +00:00
|
|
|
std::string msg = ssprintf("(%s) = %.4g ≉ %.4g", valueExpr,
|
|
|
|
value, reference);
|
2016-12-13 11:06:29 +00:00
|
|
|
PrintFailure(file, line, msg);
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-25 19:37:48 +00:00
|
|
|
bool Test::Helper::CheckLoad(const char *file, int line, const char *fixture) {
|
2017-03-11 14:43:21 +00:00
|
|
|
Platform::Path fixturePath = GetAssetPath(file, fixture);
|
2016-07-25 19:37:48 +00:00
|
|
|
|
2017-03-11 14:43:21 +00:00
|
|
|
FILE *f = OpenFile(fixturePath, "rb");
|
2016-07-25 19:37:48 +00:00
|
|
|
bool fixtureExists = (f != NULL);
|
|
|
|
if(f) fclose(f);
|
|
|
|
|
2016-11-28 16:20:59 +00:00
|
|
|
bool result = fixtureExists && SS.LoadFromFile(fixturePath);
|
2016-07-25 19:37:48 +00:00
|
|
|
if(!RecordCheck(result)) {
|
|
|
|
PrintFailure(file, line,
|
2017-03-11 14:43:21 +00:00
|
|
|
ssprintf("loading file '%s'", fixturePath.raw.c_str()));
|
2016-07-25 19:37:48 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
SS.AfterNewFile();
|
|
|
|
SS.GW.offset = {};
|
|
|
|
SS.GW.scale = 10.0;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Test::Helper::CheckSave(const char *file, int line, const char *reference) {
|
2017-03-11 14:43:21 +00:00
|
|
|
Platform::Path refPath = GetAssetPath(file, reference),
|
|
|
|
outPath = GetAssetPath(file, reference, "out");
|
2016-07-25 19:37:48 +00:00
|
|
|
if(!RecordCheck(SS.SaveToFile(outPath))) {
|
|
|
|
PrintFailure(file, line,
|
2017-03-11 14:43:21 +00:00
|
|
|
ssprintf("saving file '%s'", refPath.raw.c_str()));
|
2016-07-25 19:37:48 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
2016-10-09 19:58:44 +00:00
|
|
|
std::string refData, outData;
|
|
|
|
ReadFile(refPath, &refData);
|
|
|
|
ReadFile(outPath, &outData);
|
|
|
|
if(!RecordCheck(PrepareSavefile(refData) == PrepareSavefile(outData))) {
|
2016-07-25 19:37:48 +00:00
|
|
|
PrintFailure(file, line, "savefile doesn't match reference");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-03-11 14:43:21 +00:00
|
|
|
RemoveFile(outPath);
|
2016-07-25 19:37:48 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Test::Helper::CheckRender(const char *file, int line, const char *reference) {
|
2018-07-12 19:29:44 +00:00
|
|
|
// First, render to a framebuffer.
|
|
|
|
Camera camera = {};
|
|
|
|
camera.pixelRatio = 1;
|
|
|
|
camera.gridFit = true;
|
|
|
|
camera.width = 600;
|
|
|
|
camera.height = 600;
|
|
|
|
camera.projUp = SS.GW.projUp;
|
|
|
|
camera.projRight = SS.GW.projRight;
|
|
|
|
camera.scale = SS.GW.scale;
|
|
|
|
|
|
|
|
CairoPixmapRenderer pixmapCanvas;
|
|
|
|
pixmapCanvas.SetLighting(SS.GW.GetLighting());
|
|
|
|
pixmapCanvas.SetCamera(camera);
|
|
|
|
pixmapCanvas.Init();
|
|
|
|
|
|
|
|
pixmapCanvas.NewFrame();
|
|
|
|
SS.GW.Draw(&pixmapCanvas);
|
|
|
|
pixmapCanvas.FlushFrame();
|
|
|
|
std::shared_ptr<Pixmap> frame = pixmapCanvas.ReadFrame();
|
|
|
|
|
|
|
|
pixmapCanvas.Clear();
|
|
|
|
|
|
|
|
// Now, diff framebuffer against reference render.
|
2017-03-11 14:43:21 +00:00
|
|
|
Platform::Path refPath = GetAssetPath(file, reference),
|
|
|
|
outPath = GetAssetPath(file, reference, "out"),
|
|
|
|
diffPath = GetAssetPath(file, reference, "diff");
|
2016-07-25 19:37:48 +00:00
|
|
|
|
2017-03-11 14:43:21 +00:00
|
|
|
std::shared_ptr<Pixmap> refPixmap = Pixmap::ReadPng(refPath, /*flip=*/true);
|
2018-07-12 19:29:44 +00:00
|
|
|
if(!RecordCheck(refPixmap && refPixmap->Equals(*frame))) {
|
|
|
|
frame->WritePng(outPath, /*flip=*/true);
|
2016-07-25 19:37:48 +00:00
|
|
|
|
|
|
|
if(!refPixmap) {
|
|
|
|
PrintFailure(file, line, "reference render not present");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:29:44 +00:00
|
|
|
ssassert(refPixmap->format == frame->format, "Expected buffer formats to match");
|
|
|
|
if(refPixmap->width != frame->width ||
|
|
|
|
refPixmap->height != frame->height) {
|
2016-07-25 19:37:48 +00:00
|
|
|
PrintFailure(file, line, "render doesn't match reference; dimensions differ");
|
|
|
|
} else {
|
|
|
|
std::shared_ptr<Pixmap> diffPixmap =
|
|
|
|
Pixmap::Create(refPixmap->format, refPixmap->width, refPixmap->height);
|
|
|
|
|
|
|
|
int diffPixelCount = 0;
|
|
|
|
for(size_t j = 0; j < refPixmap->height; j++) {
|
|
|
|
for(size_t i = 0; i < refPixmap->width; i++) {
|
2018-07-12 19:29:44 +00:00
|
|
|
if(!refPixmap->GetPixel(i, j).Equals(frame->GetPixel(i, j))) {
|
2016-07-25 19:37:48 +00:00
|
|
|
diffPixelCount++;
|
|
|
|
diffPixmap->SetPixel(i, j, RgbaColor::From(255, 0, 0, 255));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-11 14:43:21 +00:00
|
|
|
diffPixmap->WritePng(diffPath, /*flip=*/true);
|
2016-07-25 19:37:48 +00:00
|
|
|
std::string message =
|
|
|
|
ssprintf("render doesn't match reference; %d (%.2f%%) pixels differ",
|
|
|
|
diffPixelCount,
|
|
|
|
100.0 * diffPixelCount / (refPixmap->width * refPixmap->height));
|
|
|
|
PrintFailure(file, line, message);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
} else {
|
2017-03-11 14:43:21 +00:00
|
|
|
RemoveFile(outPath);
|
|
|
|
RemoveFile(diffPath);
|
2016-07-25 19:37:48 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-03 07:44:10 +00:00
|
|
|
bool Test::Helper::CheckRenderXY(const char *file, int line, const char *fixture) {
|
|
|
|
SS.GW.projRight = Vector::From(1, 0, 0);
|
|
|
|
SS.GW.projUp = Vector::From(0, 1, 0);
|
|
|
|
return CheckRender(file, line, fixture);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Test::Helper::CheckRenderIso(const char *file, int line, const char *fixture) {
|
|
|
|
SS.GW.projRight = Vector::From(0.707, 0.000, -0.707);
|
|
|
|
SS.GW.projUp = Vector::From(-0.408, 0.816, -0.408);
|
|
|
|
return CheckRender(file, line, fixture);
|
|
|
|
}
|
|
|
|
|
2016-07-25 19:37:48 +00:00
|
|
|
// Avoid global constructors; using a global static vector instead of a local one
|
|
|
|
// breaks MinGW for some obscure reason.
|
|
|
|
static std::vector<Test::Case> *testCasesPtr;
|
|
|
|
int Test::Case::Register(Test::Case testCase) {
|
|
|
|
static std::vector<Test::Case> testCases;
|
|
|
|
testCases.push_back(testCase);
|
|
|
|
testCasesPtr = &testCases;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2016-12-05 00:25:31 +00:00
|
|
|
std::vector<std::string> args = InitPlatform(argc, argv);
|
2016-07-25 19:37:48 +00:00
|
|
|
|
|
|
|
std::regex filter(".*");
|
2016-12-05 00:25:31 +00:00
|
|
|
if(args.size() == 1) {
|
|
|
|
} else if(args.size() == 2) {
|
|
|
|
filter = args[1];
|
2016-07-25 19:37:48 +00:00
|
|
|
} else {
|
2016-12-05 00:25:31 +00:00
|
|
|
fprintf(stderr, "Usage: %s [test filter regex]\n", args[0].c_str());
|
2016-07-25 19:37:48 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-07-18 02:20:25 +00:00
|
|
|
Platform::fontFiles.push_back(HostRoot().Join("Gentium-R.ttf"));
|
2016-07-31 08:43:33 +00:00
|
|
|
|
2016-07-25 19:37:48 +00:00
|
|
|
// Wreck order dependencies between tests!
|
|
|
|
std::random_shuffle(testCasesPtr->begin(), testCasesPtr->end());
|
|
|
|
|
|
|
|
auto testStartTime = std::chrono::steady_clock::now();
|
|
|
|
size_t ranTally = 0, skippedTally = 0, checkTally = 0, failTally = 0;
|
|
|
|
for(Test::Case &testCase : *testCasesPtr) {
|
|
|
|
std::string testCaseName = testCase.fileName;
|
|
|
|
testCaseName.erase(0, BuildRoot().size());
|
|
|
|
testCaseName.erase(testCaseName.rfind(BUILD_PATH_SEP));
|
|
|
|
testCaseName += BUILD_PATH_SEP + testCase.caseName;
|
|
|
|
|
|
|
|
std::smatch filterMatch;
|
|
|
|
if(!std::regex_search(testCaseName, filterMatch, filter)) {
|
|
|
|
skippedTally += 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
SS.Init();
|
2019-07-12 11:09:19 +00:00
|
|
|
SS.showToolbar = false;
|
2016-10-11 21:25:46 +00:00
|
|
|
SS.checkClosedContour = false;
|
2016-07-25 19:37:48 +00:00
|
|
|
|
|
|
|
Test::Helper helper = {};
|
|
|
|
testCase.fn(&helper);
|
|
|
|
|
|
|
|
SK.Clear();
|
|
|
|
SS.Clear();
|
|
|
|
|
|
|
|
ranTally += 1;
|
|
|
|
checkTally += helper.checkCount;
|
|
|
|
failTally += helper.failCount;
|
|
|
|
if(helper.checkCount == 0) {
|
|
|
|
fprintf(stderr, " %s test %s (empty)\n",
|
|
|
|
Colorize(Color::Red, "??").c_str(),
|
|
|
|
Colorize(Color::DarkGreen, testCaseName).c_str());
|
|
|
|
} else if(helper.failCount > 0) {
|
|
|
|
fprintf(stderr, " %s test %s\n",
|
|
|
|
Colorize(Color::Red, "NG").c_str(),
|
|
|
|
Colorize(Color::DarkGreen, testCaseName).c_str());
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, " %s test %s\n",
|
|
|
|
Colorize(Color::Green, "OK").c_str(),
|
|
|
|
Colorize(Color::DarkGreen, testCaseName).c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto testEndTime = std::chrono::steady_clock::now();
|
|
|
|
std::chrono::duration<double> testTime = testEndTime - testStartTime;
|
|
|
|
|
|
|
|
if(failTally > 0) {
|
|
|
|
fprintf(stderr, "Failure! %u checks failed\n",
|
|
|
|
(unsigned)failTally);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Success! %u test cases (%u skipped), %u checks, %.3fs\n",
|
|
|
|
(unsigned)ranTally, (unsigned)skippedTally,
|
|
|
|
(unsigned)checkTally, testTime.count());
|
|
|
|
}
|
2016-08-01 03:52:12 +00:00
|
|
|
|
|
|
|
// At last, try to reset all caches we or our dependencies have, to make SNR
|
|
|
|
// of memory checking tools like valgrind higher.
|
|
|
|
cairo_debug_reset_static_data();
|
|
|
|
|
|
|
|
return (failTally > 0);
|
2016-07-25 19:37:48 +00:00
|
|
|
}
|