From 4a8873731dd6d7965665bb90e8530bd83167d6f3 Mon Sep 17 00:00:00 2001 From: amittai Date: Wed, 29 Apr 2015 13:36:49 -0400 Subject: 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. --- tests/run-system-tests.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; -- cgit v1.2.3