Fork of Tangara with customizations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
tangara-fw/lib/catch2/catch_runner.cpp

30 lines
769 B

/*
* Copyright 2023 jacqueline <me@jacqueline.id.au>
*
* SPDX-License-Identifier: GPL-3.0-only
*/
#include "catch_runner.hpp"
#define CATCH_CONFIG_RUNNER
#include "catch2/catch.hpp"
// There must be exactly on Session instance at all times; attempting to destroy
// this will result in memory corruption.
static Catch::Session sCatchSession;
int exec_catch2(int argc, char** argv) {
// Reset the existing configuration before applying a new one. Otherwise we
// will get the combination of all configs.
sCatchSession.configData() = Catch::ConfigData();
int result = sCatchSession.applyCommandLine(argc, argv);
if (result != 0) {
return result;
}
// Returns number of failures.
int failures = sCatchSession.run();
return failures > 0;
}