Home | History | Annotate | Download | only in tools

Lines Matching full:opts

144 	de::cmdline::CommandLine	opts;
150 if (!parser.parse(argc-1, argv+1, &opts, std::cerr))
157 if (opts.hasOption<opt::StartServer>() && opts.hasOption<opt::Host>())
162 else if (!opts.hasOption<opt::StartServer>() && !opts.hasOption<opt::Host>())
168 if (!opts.hasOption<opt::TestSet>())
174 if (opts.hasOption<opt::StartServer>())
177 cmdLine.serverBinOrAddress = opts.getOption<opt::StartServer>();
182 cmdLine.serverBinOrAddress = opts.getOption<opt::Host>();
185 if (opts.hasOption<opt::ContinueFile>())
187 cmdLine.inFile = opts.getOption<opt::ContinueFile>();
196 cmdLine.port = opts.getOption<opt::Port>();
197 cmdLine.caseListDir = opts.getOption<opt::CaseListDir>();
198 cmdLine.testset = opts.getOption<opt::TestSet>();
199 cmdLine.exclude = opts.getOption<opt::ExcludeSet>();
200 cmdLine.outFile = opts.getOption<opt::TestLogFile>();
201 cmdLine.infoFile = opts.getOption<opt::InfoLogFile>();
202 cmdLine.summary = opts.getOption<opt::Summary>();
203 cmdLine.targetCfg.binaryName = opts.getOption<opt::BinaryName>();
204 cmdLine.targetCfg.workingDir = opts.getOption<opt::WorkingDir>();
205 cmdLine.targetCfg.cmdLineArgs = opts.getOption<opt::CmdLineArgs>();