blob: 5b225607131f24d3193cb8a6a98ef059f0f147db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <iostream>
int main() {
std::cout << "[BoltDBG] Running tests...\n";
int passed = 0, failed = 0;
extern void run_logger_tests(int&, int&);
run_logger_tests(passed, failed);
std::cout << "Tests passed: " << passed << "\n";
std::cout << "Tests failed: " << failed << "\n";
return failed > 0 ? 1 : 0;
}
|