summaryrefslogtreecommitdiff
path: root/uunit.cc
blob: ba894cbeff49ec01088f1131ba147e3eb056b941 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// -*- c++ -*-
// This is the uUnit main file.
// Copyright 2020 Bent Bisballe Nyeng (deva@aasimon.org)
// This file released under the CC0-1.0 license. See CC0-1.0 file for details.

#define uUNIT_MAIN
#include "uunit.h"

#include <fstream>

int main(int argc, char* argv[])
{
	(void)argc;
	(void)argv;
	std::ofstream xmlfile;
	xmlfile.open("result_" OUTPUT ".xml");
	return uUnit::runTests(xmlfile);
}