diff options
author | amittai <amittai@users.noreply.github.com> | 2015-04-29 13:36:49 -0400 |
---|---|---|
committer | amittai <amittai@users.noreply.github.com> | 2015-04-29 13:36:49 -0400 |
commit | 4a8873731dd6d7965665bb90e8530bd83167d6f3 (patch) | |
tree | b93988a0d4dafc33a7253485bf14570a3f593a13 /tests | |
parent | baaa91375561a4a7eeabaf8a5d4b7283b459a8e1 (diff) |
Update run-system-tests.pl
Line 6 doesn't work, but there are two possible reasons (and possible fixes). Either
A) the test should be looking for the build decoder in $cdec/build/decoder/cdec instead of in $cdec/decoder/cdec.
or
B) the "make -j4" command should be creating a decoder executable at $cdec/decoder/cdec , but isn't.
I assumed (A), because it's simpler.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/run-system-tests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-system-tests.pl b/tests/run-system-tests.pl index 324763ae..1e64a004 100755 --- a/tests/run-system-tests.pl +++ b/tests/run-system-tests.pl @@ -8,7 +8,7 @@ my $TEMP_DIR = tempdir( CLEANUP => 1 ); #my $cwd = cwd(); #die "Sanity failed: $cwd" unless -d $cwd; -my $DECODER = "$script_dir/../decoder/cdec"; +my $DECODER = "$script_dir/../build/decoder/cdec"; my $FILTER = "$script_dir/tools/filter-stderr.pl"; my $COMPARE_STATS = "$script_dir/tools/compare-statistics.pl"; my $XDIFF = "$script_dir/tools/flex-diff.pl"; |