Lines Matching defs:opts
145 de::cmdline::CommandLine opts;
151 if (!parser.parse(argc-1, argv+1, &opts, std::cerr))
158 if (opts.hasOption<opt::StartServer>() && opts.hasOption<opt::Host>())
163 else if (!opts.hasOption<opt::StartServer>() && !opts.hasOption<opt::Host>())
169 if (!opts.hasOption<opt::TestSet>())
175 if (opts.hasOption<opt::StartServer>())
178 cmdLine.serverBinOrAddress = opts.getOption<opt::StartServer>();
183 cmdLine.serverBinOrAddress = opts.getOption<opt::Host>();
186 if (opts.hasOption<opt::ContinueFile>())
188 cmdLine.inFile = opts.getOption<opt::ContinueFile>();
197 cmdLine.port = opts.getOption<opt::Port>();
198 cmdLine.caseListDir = opts.getOption<opt::CaseListDir>();
199 cmdLine.testset = opts.getOption<opt::TestSet>();
200 cmdLine.exclude = opts.getOption<opt::ExcludeSet>();
201 cmdLine.outFile = opts.getOption<opt::TestLogFile>();
202 cmdLine.infoFile = opts.getOption<opt::InfoLogFile>();
203 cmdLine.summary = opts.getOption<opt::Summary>();
204 cmdLine.targetCfg.binaryName = opts.getOption<opt::BinaryName>();
205 cmdLine.targetCfg.workingDir = opts.getOption<opt::WorkingDir>();
206 cmdLine.targetCfg.cmdLineArgs = opts.getOption<opt::CmdLineArgs>();