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

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'regression-testing/tests/ptable-filtering/filter-stderr')
-rwxr-xr-xregression-testing/tests/ptable-filtering/filter-stderr29
1 files changed, 0 insertions, 29 deletions
diff --git a/regression-testing/tests/ptable-filtering/filter-stderr b/regression-testing/tests/ptable-filtering/filter-stderr
deleted file mode 100755
index 4b359127e..000000000
--- a/regression-testing/tests/ptable-filtering/filter-stderr
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/perl
-$x=0;
-while (<>) {
- chomp;
-
- if (/^\[.* ; 2-2\]$/o) {
- my @lines;
- my $done = 0;
- while (!$done) {
- $x = <>;
- if ($x =~ /^\s*$/o) { $done = 1; } else {
- chomp $x;
- $x =~ s/^\s+//o;
- push @lines, $x;
- }
- }
- my $c = 0;
- foreach my $x (sort @lines) {
- $c++;
- print "TRANSLATION_OPTION_$c=$x\n";
- }
- }
-
- next unless /^BEST HYPO:/;
- s/^BEST HYPO:\s*//;
- s/\s*\[111+.*$//;
- $x++;
- print "TRANSLATION_$x = $_\n";
-}