[Compbench-devel] CompBenchmarks++/compbenchmarks-core cloptions.cpp, 1.5, 1.6
Brought to you by:
xfred
From: Frederic T. <xf...@us...> - 2007-06-13 18:40:04
|
Update of /cvsroot/compbench/CompBenchmarks++/compbenchmarks-core In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv818 Modified Files: cloptions.cpp Log Message: std::out message removed. Index: cloptions.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/compbenchmarks-core/cloptions.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** cloptions.cpp 7 Jun 2007 16:18:13 -0000 1.5 --- cloptions.cpp 13 Jun 2007 18:39:58 -0000 1.6 *************** *** 86,89 **** --- 86,90 ---- << " --force : force operation" << std::endl << " --verbose <0,1,2> : manage messages (quiet,basic reporting,complete)" << std::endl + << " --quiet : alias for --verbose 0" << std::endl << std::endl; } *************** *** 283,286 **** --- 284,288 ---- {"force", 0, 0, 'f' }, {"verbose", required_argument, 0, 'V' }, + {"quiet", no_argument, 0, 'Q' }, { 0, 0, 0, 0} }; *************** *** 292,296 **** break; ! c = getopt_long (argc, argv, "hvxiI:F:U:qHc:p::V:B:b::A:aMmD:E:P:C:T:R:S:f", // uLHPCFIB", /* :011000112", */ long_options, &option_index); if (c==-1) { --- 294,298 ---- break; ! c = getopt_long (argc, argv, "hvxiI:F:U:qHc:p::V:B:b::A:aMmD:E:P:C:T:R:S:fQ", // uLHPCFIB", /* :011000112", */ long_options, &option_index); if (c==-1) { *************** *** 323,326 **** --- 325,331 ---- } break; + case 'Q': + UO_verbose=CBM::None; + break; case 'q': cbmSingleDomain(&domain, DomainQuery, "q"); |