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-19 23:44:12 +0400
committerHieu Hoang <hieuhoang@gmail.com>2012-11-19 23:44:12 +0400
commit83d079731d386d0d9791539e1b059df86b52f75a (patch)
treee5a4af819f4b5f2850318a8ff76836fe087a100b /regression-testing
parentb7272b4de90d0848f35853fe2be7ecfd17f197a4 (diff)
add tests for decoding with compressed pt. Fails
Diffstat (limited to 'regression-testing')
-rw-r--r--regression-testing/Jamfile7
1 files changed, 6 insertions, 1 deletions
diff --git a/regression-testing/Jamfile b/regression-testing/Jamfile
index 16110ad29..d3193806f 100644
--- a/regression-testing/Jamfile
+++ b/regression-testing/Jamfile
@@ -49,5 +49,10 @@ if $(with-regtest) {
}
reg_test mert : [ glob $(test-dir)/mert.* ] : ../mert//mert ../mert//extractor ../mert//pro : @reg_test_mert ;
- alias all : phrase chart mert score extract extractrules ;
+ actions reg_test_misc {
+ $(TOP)/regression-testing/run-test-misc.perl --moses-root=$(TOP) --moses-bin=$(BINDIR) --test=$(<:B) --data-dir=$(with-regtest) --test-dir=$(test-dir) && touch $(<)
+ }
+ reg_test misc : [ glob $(test-dir)/misc.* ] : ..//prefix-bin ..//prefix-lib : @reg_test_misc ;
+
+ alias all : phrase chart mert score extract extractrules misc ;
}