Update of /cvsroot/compbench/CompBenchmarks++/compbenchmarks-plan
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv4774
Modified Files:
cloptions.cpp
Log Message:
Help's now up-to-date.
Index: cloptions.cpp
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/compbenchmarks-plan/cloptions.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** cloptions.cpp 1 Aug 2007 19:44:46 -0000 1.7
--- cloptions.cpp 2 Aug 2007 19:12:32 -0000 1.8
***************
*** 52,57 ****
std::cout << "Usage: compbenchmarks-plan [OPTIONS]" << std::endl
<< "Plan management :" << std::endl
! << " --plan-register <file> [--default] : Create file[.xml] plan." << std::endl
! << " --plan-unregister <file> : Remove a plan." << std::endl
<< std::endl;
}
--- 52,83 ----
std::cout << "Usage: compbenchmarks-plan [OPTIONS]" << std::endl
<< "Plan management :" << std::endl
! << " --plan-register <file> [--default] : create file[.xml] plan." << std::endl
! << " --plan-unregister <file> : remove a plan (including file)." << std::endl
! << " --plan-use <fil> : explicitly use given plan." << std::endl
! << std::endl << "Batch management :" << std::endl
! << " --batch-register <id> : register a new batch." << std::endl
! << " --batch-unregister <id> : unregister batch." << std::endl
! << " --batch-use <id> : use given batch." << std::endl
! << " --batch-list : list defined batchs." << std::endl
! << std::endl << "Compiler management :" << std::endl
! << " --compiler-register <binary> : register a new compiler. " << std::endl
! << " --compiler-unregister <binary> : unregister a compiler. " << std::endl
! << " --compiler-list : list defined compilers. " << std::endl
! << std::endl << "Optionset management :" << std::endl
! << " --optionset-register <id> : register a new optionset. " << std::endl
! << " --optionset-unregister <id> : unregister an optionset. " << std::endl
! << " --optionset-use <id> : use an optionset. " << std::endl
! << " --optionset-list : list optionsets." << std::endl
! << std::endl << "Option (group) management :" << std::endl
! << " --options-register <id> : register a new option group." << std::endl
! << " --options-unregister <id> : unregister an option group. " << std::endl
! << " --options-use <id> : use an option group. " << std::endl
! << " --options-list : list option group." << std::endl
! << std::endl << "Compiler(s) option management :" << std::endl
! << " --option-register <option[s]> : register option[s]." << std::endl
! << " --option-unregister <option[s]> : unregister option[s]." << std::endl
! << std::endl
! << "Benchmarking : " << std::endl
! << " --run : start/resume benchmark." << std::endl
<< std::endl;
}
|