mirror of
https://github.com/cmusphinx/sphinxtrain.git
synced 2026-06-16 13:14:30 +00:00
test_make_topology.pl for some changes in maketopology.pl git-svn-id: svn+ssh://svn.code.sf.net/p/cmusphinx/code/trunk/SphinxTrain@6403 94700074-3cef-4d97-a70e-9c8c206c02f5
18 lines
487 B
Perl
Executable File
18 lines
487 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
|
|
use strict;
|
|
require './scripts/testlib.pl';
|
|
|
|
chomp(my $host=`../config.guess | xargs ../config.sub`);
|
|
my $bindir="../bin.$host/";
|
|
my $resdir="res/";
|
|
my $exec_resdir="bugcase1";
|
|
my $bin="${bindir}mk_mdef_gen";
|
|
|
|
my $filler="${exec_resdir}/time.filler";
|
|
my $phonelist="${exec_resdir}/time.phonelist";
|
|
|
|
test_this("$bin -phnlstfn $phonelist -oalltphnmdef all.mdef -fdictfn $filler -dictfn ./res/cmudict.0.6d","DRY RUN of hack itree max cell bug");
|
|
unlink("all.mdef");
|
|
|