kicad/qa/drc_proto/drc_proto_test.cpp

39 lines
804 B
C++
Raw Normal View History

2020-06-13 23:28:08 +00:00
#include <string>
#include <common.h>
#include <profile.h>
#include <wx/cmdline.h>
#include <pcbnew_utils/board_file_utils.h>
#include <drc_proto/drc_engine.h>
#include <reporter.h>
#include <widgets/progress_reporter.h>
2020-06-13 23:28:08 +00:00
int main( int argc, char *argv[] )
{
PROPERTY_MANAGER& propMgr = PROPERTY_MANAGER::Instance();
propMgr.Rebuild();
STDOUT_REPORTER msgReporter;
2020-06-13 23:28:08 +00:00
auto brd = KI_TEST::ReadBoardFromFileOrStream(argv[1]);
test::DRC_ENGINE drcEngine( brd.get(), &brd->GetDesignSettings() );
drcEngine.SetLogReporter( &msgReporter );
try
{
drcEngine.LoadRules( wxString( argv[2] ) );
}
catch( PARSE_ERROR& err )
2020-06-13 23:28:08 +00:00
{
printf("Can't load DRC rules: %s\n", (const char*) err.What().c_str() );
2020-06-13 23:28:08 +00:00
}
drcEngine.RunTests();
return 0;
}