From: Fridrich S. <str...@us...> - 2008-12-04 00:01:44
|
Update of /cvsroot/libwpg/wpgtest In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv11196 Modified Files: regression.pl Log Message: differenciate the different valgrind results Index: regression.pl =================================================================== RCS file: /cvsroot/libwpg/wpgtest/regression.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- regression.pl 3 Dec 2008 23:36:27 -0000 1.1.1.1 +++ regression.pl 4 Dec 2008 00:01:40 -0000 1.2 @@ -72,7 +72,7 @@ if ($diff eq "" && $err eq "") { $bgColor = $pass_colour; } elsif ($err ne "") { - $bgColor = $fail_colour; + $bgColor = $fail_colour;sourceforge import cvs module vendor_tag } else { $bgColor = $warn_colour; } @@ -170,7 +170,7 @@ # RAW VALGRIND REGRESSION TEST # //////////////////////////// if ($do_vg) { - $vgPath = 'testset/' . $wpVersion . '/' . $file . '.vg'; + $vgPath = 'testset/' . $wpVersion . '/' . $file . '.rawvg'; $rawValgrind = 0; `$vgCommand --leak-check=yes wpg2raw $filePath 1> $vgPath 2> $vgPath`; open VG, "$vgPath"; @@ -214,7 +214,7 @@ # SVG VALGRIND REGRESSION TEST # //////////////////////////// if ($do_vg) { - $vgPath = 'testset/' . $wpVersion . '/' . $file . '.vg'; + $vgPath = 'testset/' . $wpVersion . '/' . $file . '.svgvg'; $svgValgrind = 0; `$vgCommand --leak-check=yes wpg2svg $filePath 1> $vgPath 2> $vgPath`; open VG, "$vgPath"; |