Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVaclav Petricek <vpetricek@eharmony.com>2013-11-11 23:49:32 +0400
committerVaclav Petricek <vpetricek@eharmony.com>2013-11-12 00:08:50 +0400
commit8625e520d19bd633a7e3af988108915994802ff0 (patch)
tree698aa411325cbaf4bea9761471f48ea82d5d1f6c /test/RunTests
parent4e126d8bdc3033fa7915c4b4c25a0dab51031edc (diff)
wider diff output for fuzzy compare: -W 200
Diffstat (limited to 'test/RunTests')
-rwxr-xr-xtest/RunTests2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/RunTests b/test/RunTests
index 21776703..a80761bf 100755
--- a/test/RunTests
+++ b/test/RunTests
@@ -286,7 +286,7 @@ sub lenient_array_compare($$) {
sub diff_lenient_float($$) {
my ($reffile, $outfile) = @_;
my $status = 0;
- my $diff_opts = '-N --minimal --side-by-side --suppress-common-lines --ignore-all-space --strip-trailing-cr';
+ my $diff_opts = '-N --minimal --side-by-side --suppress-common-lines --ignore-all-space --strip-trailing-cr -W 200';
my $tmpf = 'lenient-diff.tmp';
system("$Diff $diff_opts $reffile $outfile >$tmpf");
$status = $? >> 8;