blob: 02f422964f67b2aedcbb571d682a02cb03913368 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#include "unittest.h"
#include <iostream>
#include "execute.h"
#include "settings.h"
#include "task.h"
int runUnitTests(std::set<std::shared_ptr<Task>>& tasks,
const Settings& settings)
{
bool ok{true};
std::cout << "Running unit-tests:\n";
// Run unit-tests
for(const auto& task : tasks)
{
if(task->targetType() == TargetType::UnitTest)
{
auto name = task->name();
if(name.empty())
{
name = task->target();
}
std::cout << name << ": " << std::flush;
auto ret = execute(task->targetFile(), {}, settings.verbose > 0);
ok &= ret == 0;
if(ret == 0)
{
std::cout << " OK\n";
}
else
{
std::cout << " FAILED\n";
}
}
}
return ok ? 0 : 1;
}
|