mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-07 12:10:36 +03:00
47a6ee71cd
Added the extract test to suite. Disabled extract-rules test for now, since it fails. Removed run-test-suite.perl, since tests are run with bjam.
45 lines
1.9 KiB
Plaintext
45 lines
1.9 KiB
Plaintext
import option ;
|
|
|
|
with-regtest = [ option.get "with-regtest" ] ;
|
|
if $(with-regtest) {
|
|
path-constant TESTS : $(with-regtest)/tests ;
|
|
|
|
rule reg_test ( name : tests * : program : action ) {
|
|
alias $(name) : $(tests:D=).passed ;
|
|
for test in $(tests) {
|
|
make $(test:D=).passed : $(program) : $(action) ;
|
|
alias $(test) : $(test:D=).passed ;
|
|
}
|
|
}
|
|
|
|
actions reg_test_decode {
|
|
$(TOP)/regression-testing/run-single-test.perl --decoder=$(>) --test=$(<:B) --data-dir=$(with-regtest) --test-dir=$(TESTS) && touch $(<)
|
|
}
|
|
reg_test phrase : [ glob $(TESTS)/phrase.* ] : ../moses-cmd/src//moses : @reg_test_decode ;
|
|
reg_test chart : [ glob $(TESTS)/chart.* : $(TESTS)/chart.hierarchical-withkenlm ] : ../moses-chart-cmd/src//moses_chart : @reg_test_decode ;
|
|
|
|
actions reg_test_score {
|
|
$(TOP)/regression-testing/run-test-scorer.perl --scorer=$(>) --test=$(<:B) --data-dir=$(with-regtest) --test-dir=$(TESTS) && touch $(<)
|
|
}
|
|
reg_test score : [ glob $(TESTS)/score.* ] : ../phrase-extract//score : @reg_test_score ;
|
|
|
|
actions reg_test_extract {
|
|
$(TOP)/regression-testing/run-test-extract.perl --extractor=$(>) --test=$(<:B) --data-dir=$(with-regtest) --test-dir=$(TESTS) && touch $(<)
|
|
}
|
|
reg_test extract : [ glob $(TESTS)/extract.* ] : ../phrase-extract//extract : @reg_test_extract ;
|
|
|
|
|
|
actions reg_test_extractrules {
|
|
$(TOP)/regression-testing/run-test-extract.perl --extractor=$(>) --test=$(<:B) --data-dir=$(with-regtest) --test-dir=$(TESTS) && touch $(<)
|
|
}
|
|
reg_test extractrules : [ glob $(TESTS)/extract-rules.* : $(TESTS)/extract-rules.hierarchical ] : ../phrase-extract//extract-rules : @reg_test_extractrules ;
|
|
|
|
|
|
actions reg_test_mert {
|
|
$(TOP)/regression-testing/run-test-mert.perl --test=$(<:B) --data-dir=$(with-regtest) --test-dir=$(TESTS) && touch $(<)
|
|
}
|
|
reg_test mert : [ glob $(TESTS)/mert.* ] : ../mert//mert : @reg_test_mert ;
|
|
|
|
alias all : phrase chart mert score extract extractrules ;
|
|
}
|