[Compbench-devel] CompBenchmarks++ cloptions.cpp,1.5,1.6
Brought to you by:
xfred
|
From: Frederic T. <xf...@us...> - 2006-09-24 18:14:21
|
Update of /cvsroot/compbench/CompBenchmarks++ In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv27425 Modified Files: cloptions.cpp Log Message: Fix on --fetch option. Index: cloptions.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/cloptions.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** cloptions.cpp 24 Sep 2006 16:28:38 -0000 1.5 --- cloptions.cpp 24 Sep 2006 18:14:16 -0000 1.6 *************** *** 62,66 **** {"version", 0, 0, 'v'}, {"install", 1, 0, 'i' }, ! {"fetch", 1, 0, 'f'}, {"uninstall", 1, 0, 'u' }, {"list-benchmarks", 0, 0, 'L'}, --- 62,66 ---- {"version", 0, 0, 'v'}, {"install", 1, 0, 'i' }, ! {"fetch", 1, 0, 'F'}, {"uninstall", 1, 0, 'u' }, {"list-benchmarks", 0, 0, 'L'}, *************** *** 143,147 **** } bench=optarg; - printf("bid='%s'\n", bench.c_str()); B=SB.select((char*) bench.c_str()); if (!B) { --- 143,146 ---- *************** *** 150,154 **** break; } - printf("bench found.\n"); optind++; if (optind<=argc) { --- 149,152 ---- |