2018-10-02 22:42:53 +00:00
|
|
|
#!/usr/bin/perl
|
|
|
|
# This file ONLY is placed into the Public Domain, for any use,
|
|
|
|
# Author: Yu-Sheng Lin johnjohnlys@media.ee.ntu.edu.tw
|
|
|
|
|
|
|
|
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
|
|
|
|
|
|
|
|
scenarios(vlt_all => 1);
|
|
|
|
|
|
|
|
compile(
|
|
|
|
v_flags2 => ["--trace-fst"],
|
|
|
|
);
|
|
|
|
|
|
|
|
execute(
|
|
|
|
check_finished => 1,
|
|
|
|
);
|
|
|
|
|
2020-03-07 21:59:46 +00:00
|
|
|
fst_identical($Self->trace_filename, $Self->{golden_filename});
|
2018-10-02 22:42:53 +00:00
|
|
|
|
|
|
|
ok(1);
|
|
|
|
1;
|