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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
/*
-------------------------------------------------------------------------
CxxTest: A lightweight C++ unit testing library.
Copyright (c) 2008 Sandia Corporation.
This software is distributed under the LGPL License v3
For more information, see the COPYING file in the top CxxTest directory.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------
*/
#ifndef __CxxTestMain_h
#define __CxxTestMain_h
#include <cxxtest/TestTracker.h>
#include <cxxtest/Flags.h>
#ifndef _CXXTEST_HAVE_STD
# define _CXXTEST_HAVE_STD
#endif // _CXXTEST_HAVE_STD
#include <cxxtest/StdValueTraits.h>
#if defined(_CXXTEST_HAVE_STD)
#ifdef _CXXTEST_OLD_STD
# include <iostream.h>
# include <string.h>
#else // !_CXXTEST_OLD_STD
# include <iostream>
# include <cstring>
#endif // _CXXTEST_OLD_STD
#include "ps/DllLoader.h"
namespace CxxTest
{
inline void print_help(const char* name)
{
CXXTEST_STD(cerr) << name << " <suitename>" << CXXTEST_STD(endl);
CXXTEST_STD(cerr) << name << " <suitename> <testname>" << CXXTEST_STD(endl);
CXXTEST_STD(cerr) << name << " -h" << CXXTEST_STD(endl);
CXXTEST_STD(cerr) << name << " --help" << CXXTEST_STD(endl);
CXXTEST_STD(cerr) << name << " --help-tests" << CXXTEST_STD(endl);
CXXTEST_STD(cerr) << name << " -v Enable tracing output." << CXXTEST_STD(endl);
CXXTEST_STD(cerr) << name << " -disabled Also run disabled tests." << CXXTEST_STD(endl);
CXXTEST_STD(cerr) << name << " -libdir <dir> Specify library directory." << CXXTEST_STD(endl);
}
#endif
template <class TesterT>
int Main(TesterT& tmp, int argc, char* argv[])
{
//
// Parse the command-line arguments. The default behavior is to run all tests
//
// This is a primitive parser, but I'm not sure what sort of portable
// parser should be used in cxxtest.
//
#if defined(_CXXTEST_HAVE_STD)
//
// Print command-line syntax
//
for (int i = 1; i < argc; i++)
{
if ((CXXTEST_STD(strcmp)(argv[i], "-h") == 0) || (CXXTEST_STD(strcmp)(argv[i], "--help") == 0))
{
print_help(argv[0]);
return 0;
}
else if ((CXXTEST_STD(strcmp)(argv[1], "--help-tests") == 0))
{
CXXTEST_STD(cout) << "Suite/Test Names" << CXXTEST_STD(endl);
CXXTEST_STD(cout) << "---------------------------------------------------------------------------" << CXXTEST_STD(endl);
for (SuiteDescription *sd = RealWorldDescription().firstSuite(); sd; sd = sd->next())
for (TestDescription *td = sd->firstTest(); td; td = td->next())
{
CXXTEST_STD(cout) << td->suiteName() << " " << td->testName() << CXXTEST_STD(endl);
}
return 0;
}
}
//
// Process command-line options here.
//
while ((argc > 1) && (argv[1][0] == '-'))
{
int args = 1;
if (CXXTEST_STD(strcmp)(argv[1], "-v") == 0)
{
tracker().print_tracing = true;
}
else if (CXXTEST_STD(strcmp)(argv[1], "-libdir") == 0)
{
if (argc < 2)
{
CXXTEST_STD(cerr) << "ERROR: not enough arguments" << CXXTEST_STD(endl);
return -1;
}
DllLoader::OverrideLibdir(argv[2]);
args = 2;
}
else if (CXXTEST_STD(strcmp)(argv[1], "-disabled") == 0)
{
g_RunDisabled = true;
}
else
{
CXXTEST_STD(cerr) << "ERROR: unknown option '" << argv[1] << "'" << CXXTEST_STD(endl);
return -1;
}
for (int i = 1; i < (argc - args); i++)
{
argv[i] = argv[i + args];
}
argc -= args;
}
//
// Run experiments
//
bool status = false;
if ((argc == 2) && (argv[1][0] != '-'))
{
status = leaveOnly(argv[1]);
if (!status)
{
CXXTEST_STD(cerr) << "ERROR: unknown suite '" << argv[1] << "'" << CXXTEST_STD(endl);
return -1;
}
}
if ((argc == 3) && (argv[1][0] != '-'))
{
status = leaveOnly(argv[1], argv[2]);
if (!status)
{
CXXTEST_STD(cerr) << "ERROR: unknown test '" << argv[1] << "::" << argv[2] << "'" << CXXTEST_STD(endl);
return -1;
}
}
#endif
tmp.process_commandline(argc, argv);
return tmp.run();
}
}
#endif
|