blob: 295e88a7e25aed1ce6da2869fd5bdd1304ed37b9 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// IBM_PROLOG_BEGIN_TAG
// This is an automatically generated prolog.
//
// $Source: src/lib/cxxtest_data.C $
//
// IBM CONFIDENTIAL
//
// COPYRIGHT International Business Machines Corp. 2011
//
// p1
//
// Object Code Only (OCO) source materials
// Licensed Internal Code Source Materials
// IBM HostBoot Licensed Internal Code
//
// The source code for this program is not published or other-
// wise divested of its trade secrets, irrespective of what has
// been deposited with the U.S. Copyright Office.
//
// Origin: 30
//
// IBM_PROLOG_END
#include <stdint.h>
/**
* @brief global vars to keep track of unit tests,
*
* @see TestSuite.H and TestSuite.C
*
* These are now also being used in the main code to record failed modules.
*
* @var g_TotalTests - initialized to 0, updated by reportTotalTests().
* Each test suite will call reporttotaltests after all tests have
* run with the total number of tests for that suite.
* Once all the testsuites have run, the global totaltests will hold
* the total of number of unit tests for that run.
*
* Each unit test macro (TS_TRACE, TS_WARN, and TS_FAIL) will update
* the proper variable. At the end the unit tester will print out
* the totals.
*
* @var g_TraceCalls - updated by TS_TRACE macro
*
* @var g_Warnings - updated by TS_WARN macro
*
* @var g_FailedTests - updated by TS_FAIL macro in the unit test image.
* This variable is also used to allow a code in a binary image
* not containing the testcase modules to query the number of failed tests
*
*/
namespace CxxTest
{
uint64_t g_TotalTests = 0;
uint64_t g_TraceCalls = 0;
uint64_t g_Warnings = 0;
uint64_t g_FailedTests = 0;
uint64_t g_ModulesStarted = 0;
uint64_t g_ModulesCompleted= 0;
}
|