[Compbench-devel] CompBenchmarks++/libcompbenchmarks/share/perl/CBM LibUI.pm, 1.2, 1.3
Brought to you by:
xfred
From: Frederic T. <xf...@us...> - 2007-05-23 15:31:51
|
Update of /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/share/perl/CBM In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv25049 Modified Files: LibUI.pm Log Message: Few minor changes (get obsoleted BTW). Index: LibUI.pm =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/share/perl/CBM/LibUI.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LibUI.pm 15 Feb 2007 19:01:36 -0000 1.2 --- LibUI.pm 23 May 2007 15:31:09 -0000 1.3 *************** *** 19,27 **** our %DEFAULT_COMPILERS = ('C' => ! ['/usr/bin/gccx', '/usr/bin/tcc', 'gcc-2.95', 'gcc-2.96', 'gcc-3.1', 'gcc-3.2', 'gcc-3.3', 'gcc-3.4', 'gcc-4.0', 'gcc-4.1', '/usr/local/bin/gcc', '/usr/local/bin/tcc'], --- 19,28 ---- our %DEFAULT_COMPILERS = ('C' => ! ['/usr/bin/gcc', '/usr/bin/tcc', 'gcc-2.95', 'gcc-2.96', 'gcc-3.1', 'gcc-3.2', 'gcc-3.3', 'gcc-3.4', 'gcc-4.0', 'gcc-4.1', + 'gcc-4.2', '/usr/local/bin/gcc', '/usr/local/bin/tcc'], *************** *** 31,34 **** --- 32,36 ---- 'g++-3.1', 'g++-3.2', 'g++-3.3', 'g++-3.4', 'g++-4.0', 'g++-4.1', + 'g++-4.2', '/usr/local/bin/g++']); $VERSION="0.5.0"; *************** *** 138,145 **** } ! sub Plan { my $self = shift; ! return($sys->Plan()); } --- 140,148 ---- } ! sub PlanBatch { my $self = shift; + my $id = shift; ! return($sys->PlanBatch($id)); } |