Searched refs:runner (Results 1 - 4 of 4) sorted by relevance
/inkscape/cxxtest/sample/msvc/ |
H A D | Makefile | 26 --runner=ParenPrinter \ 30 # How to generate the test runner, `runner.cpp' 31 runner.cpp: $(TESTS) 34 # How to run the tests, which should be in DIR\runner.exe 35 run: $(DIR)\runner.exe 36 $(DIR)\runner.exe
|
H A D | FixFiles.bat | 92 CXXTESTGEN_FLAGS = --gui=Win32Gui --runner=ParenPrinter --have-eh --abort-on-fail 94 # How to generate the test runner, "runner.cpp" 95 runner.cpp: $(TESTS) 98 # Command-line arguments to the runner 101 # How to run the tests, which should be in DIR\runner.exe 102 run: $(DIR)\runner.exe 103 $(DIR)\runner.exe $(RUNNER_FLAGS) 159 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 /out:"Release/runner.exe" 183 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /out:"Debug/runner [all...] |
/inkscape/cxxtest/ |
H A D | cxxtestgen.pl | 11 print STDERR " --runner=CLASS Create a main() function that runs CxxTest::CLASS\n"; 12 print STDERR " --gui=CLASS Like --runner, with GUI component\n"; 13 print STDERR " --error-printer Same as --runner=ErrorPrinter\n"; 20 print STDERR " --template=TEMPLATE Use TEMPLATE file to generate the test runner\n"; 21 print STDERR " --include=HEADER Include \"HEADER\" in test runner before other headers\n"; 40 my ($output, $runner, $gui, $template, $abortOnFail, $haveEh, $noEh, $haveStd, $noStd); 49 'runner=s' => \$runner, 51 'error-printer' => sub { $runner = 'ErrorPrinter'; $haveStd = 1; }, 70 if ( $gui && !$runner ) { [all...] |
H A D | cxxtestgen.py | 7 --runner=CLASS Create a main() function that runs CxxTest::CLASS 8 --gui=CLASS Like --runner, with GUI component 9 --error-printer Same as --runner=ErrorPrinter 16 --template=TEMPLATE Use TEMPLATE file to generate the test runner 17 --include=HEADER Include HEADER in test runner before other headers 35 runner = None variable 81 ['version', 'output=', 'runner=', 'gui=', 92 global outputFileName, templateFileName, runner, gui, haveStandardLibrary, factor, longlong 101 elif o == '--runner': 102 runner [all...] |
Completed in 15 milliseconds