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:
authorHieu Hoang <hieuhoang@gmail.com>2012-11-21 20:41:05 +0400
committerHieu Hoang <hieuhoang@gmail.com>2012-11-21 20:41:05 +0400
commitb2997025f01e11a62bd25427efc2f9520537e8b5 (patch)
tree24983cdebdfc26a9228ec28cedb382ed049b9987 /regression-testing
parentc2a96fcc33c6be30a806b25656acf5647de5a6a7 (diff)
add test misc perl file
Diffstat (limited to 'regression-testing')
-rwxr-xr-xregression-testing/run-test-misc.perl84
1 files changed, 84 insertions, 0 deletions
diff --git a/regression-testing/run-test-misc.perl b/regression-testing/run-test-misc.perl
new file mode 100755
index 000000000..7a444f8c3
--- /dev/null
+++ b/regression-testing/run-test-misc.perl
@@ -0,0 +1,84 @@
+#!/usr/bin/perl -w
+
+use strict;
+
+BEGIN {
+use Cwd qw/ abs_path cwd /;
+use File::Basename;
+my $script_dir = dirname(abs_path($0));
+print STDERR "script_dir=$script_dir\n";
+push @INC, $script_dir;
+}
+
+use FindBin qw($Bin);
+use MosesRegressionTesting;
+use Getopt::Long;
+use File::Temp qw ( tempfile );
+use POSIX qw ( strftime );
+
+my ($mosesRoot, $mosesBin, $test_name, $data_dir, $test_dir, $results_dir);
+
+GetOptions("moses-root=s" => \$mosesRoot,
+ "moses-bin=s" => \$mosesBin,
+ "test=s" => \$test_name,
+ "data-dir=s"=> \$data_dir,
+ "test-dir=s"=> \$test_dir,
+ "results-dir=s"=> \$results_dir,
+ ) or exit 1;
+
+# output dir
+unless (defined $results_dir)
+{
+ my $ts = get_timestamp($mosesRoot);
+ $results_dir = "$data_dir/results/$test_name/$ts";
+}
+
+`mkdir -p $results_dir`;
+
+use File::Basename qw/dirname/;
+my $dir = dirname ($0);
+my $cmdMain = "perl -I $dir $test_dir/$test_name/run.perl -moses-root $mosesRoot -moses-bin $mosesBin -test $test_name -data-dir $data_dir -test-dir $test_dir -results-dir $results_dir\n";
+`$cmdMain`;
+
+my $outPath = "$results_dir/out";
+my $truthPath = "$test_dir/$test_name/truth/results.txt";
+
+print STDERR "outPath=$outPath \n truthPath=$truthPath \n";
+
+if (-e $outPath)
+{
+ my $cmd = "diff $outPath $truthPath | wc -l";
+
+ my $numDiff = `$cmd`;
+
+ if ($numDiff == 0)
+ {
+ # print STDERR "FAILURE. Ran $cmdMain\n";
+ print STDERR "SUCCESS\n";
+ exit 0;
+ }
+ else
+ {
+ print STDERR "FAILURE. Ran $cmdMain\n";
+ exit 1;
+ }
+}
+else
+{
+ print STDERR "FAILURE. Output does not exists. Ran $cmdMain\n";
+ exit 1;
+}
+
+###################################
+sub get_timestamp {
+ my ($file) = @_;
+ my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
+ $atime,$mtime,$ctime,$blksize,$blocks)
+ = stat($file);
+ my $timestamp = strftime("%Y%m%d-%H%M%S", gmtime $mtime);
+ my $timestamp2 = strftime("%Y%m%d-%H%M%S", gmtime);
+ my $username = `whoami`; chomp $username;
+ return "moses.v$timestamp-$username-at-$timestamp2";
+}
+
+