Welcome to mirror list, hosted at ThFree Co, Russian Federation.

base_tests.cpp « tests « base « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: efdd646c0cc8ebd25602717c5d00f34436ea419c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * \file   base_tests.cpp
 * \brief  Automated tests for Premake base library.
 * \author Copyright (c) 2002-2008 Jason Perkins and the Premake project
 */

#include "premake.h"
#include "testing/testing.h"
extern "C" {
#include "base/base.h"
}


/**
 * \brief   Run the base library automated tests.
 * \returns OKAY if all tests completed successfully.
 */
int base_tests()
{
	int status = tests_run_suite("cstr");
	if (status == OKAY) status = tests_run_suite("base");
	return status;
}