Skip to content

Commit

Permalink
Makefile + test/RunTests: remove legacy/osolete 2nd vw-executable arg
Browse files Browse the repository at this point in the history
  • Loading branch information
ariel faigon committed Jan 2, 2017
1 parent 082fa50 commit 0f1ef85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -126,7 +126,7 @@ endif

test: .FORCE vw library_example
@echo "vw running test-suite..."
(cd test && ./RunTests -d -fe -E 0.001 ../vowpalwabbit/vw ../vowpalwabbit/vw)
(cd test && ./RunTests -d -fe -E 0.001 ../vowpalwabbit/vw)

test_gcov: .FORCE vw_gcov library_example_gcov
@echo "vw running test-suite..."
Expand Down
2 changes: 1 addition & 1 deletion test/RunTests
Expand Up @@ -137,7 +137,7 @@ sub valgrind_errfile($) {
# which vw executable to test against
#
sub which_vw() {
if (@ARGV == 1 || @ARGV == 2) {
if (@ARGV > 0) {
my $exe = $ARGV[0];
if (-f $exe && -x $exe) {
printf STDERR "Testing vw: %s\n", $exe;
Expand Down

0 comments on commit 0f1ef85

Please sign in to comment.