mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-23 19:57:21 +01:00
Got rid of global variables sysfname, tempfname, librespath, respath and localepath; will now use class Constants to keep this information.
65 lines
1.8 KiB
C++
65 lines
1.8 KiB
C++
/*
|
|
|
|
Firewall Builder
|
|
|
|
Copyright (C) 2010 NetCitadel, LLC
|
|
|
|
Author: Vadim Kurland vadim@fwbuilder.org
|
|
|
|
$Id$
|
|
|
|
This program is free software which we release under the GNU General Public
|
|
License. You may redistribute and/or modify this program under the terms
|
|
of that license as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
To get a copy of the GNU General Public License, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
#include "../../config.h"
|
|
|
|
#include "generatedScriptTestsIpfw.h"
|
|
|
|
#include <cppunit/ui/text/TestRunner.h>
|
|
#include <cppunit/CompilerOutputter.h>
|
|
|
|
#include "fwbuilder/Resources.h"
|
|
#include "fwbuilder/Constants.h"
|
|
|
|
#include <QApplication>
|
|
#include <QTextCodec>
|
|
|
|
#include "../../../common/init.cpp"
|
|
|
|
using namespace std;
|
|
using namespace libfwbuilder;
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QApplication app(argc, argv, false);
|
|
|
|
// compilers always write file names into manifest in Utf8
|
|
QTextCodec::setCodecForCStrings(QTextCodec::codecForName("Utf8"));
|
|
QTextCodec::setCodecForLocale(QTextCodec::codecForName("Utf8"));
|
|
|
|
init(argv);
|
|
|
|
Resources res(Constants::getResourcesFilePath());
|
|
|
|
|
|
CppUnit::TextUi::TestRunner runner;
|
|
runner.addTest( GeneratedScriptTest::suite() );
|
|
runner.setOutputter( new CppUnit::CompilerOutputter( &runner.result(),
|
|
std::cerr ) );
|
|
|
|
runner.run();
|
|
}
|