blob: a1b5bc3cc96bee1ba8794093265217cd24274aa4 (
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
64
|
# IBM_PROLOG_BEGIN_TAG
# This is an automatically generated prolog.
#
# $Source: src/build/debug/Hostboot/CxxTest.pm $
#
# OpenPOWER HostBoot Project
#
# COPYRIGHT International Business Machines Corp. 2011,2014
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied. See the License for the specific language governing
# permissions and limitations under the License.
#
# IBM_PROLOG_END_TAG
use strict;
package Hostboot::CxxTest;
use Exporter;
our @EXPORT_OK = ('main');
sub main
{
my $modules_started =
::read64 ::findSymbolAddress("CxxTest::g_ModulesStarted");
my $modules_complete =
::read64 ::findSymbolAddress("CxxTest::g_ModulesCompleted");
my $total_tests =
::read64 ::findSymbolAddress("CxxTest::g_TotalTests");
my $failed_tests =
::read64 ::findSymbolAddress("CxxTest::g_FailedTests");
my $test_warnings =
::read64 ::findSymbolAddress("CxxTest::g_Warnings");
my $test_traces =
::read64 ::findSymbolAddress("CxxTest::g_TraceCalls");
::userDisplay "===================================================\n";
::userDisplay " Modules started: $modules_started\n";
::userDisplay " Modules completed: $modules_complete\n";
::userDisplay "\n";
::userDisplay " Total tests: $total_tests\n";
::userDisplay " Failed tests: $failed_tests\n";
::userDisplay " Warnings: $test_warnings\n";
::userDisplay " Trace calls: $test_traces\n";
::userDisplay "===================================================\n";
}
sub helpInfo
{
my %info = (
name => "CxxTest",
intro => ["Displays the number of CxxTest cases executed and their results,",
"warnings, etc."],
);
}
|