Skip to content

Commit

Permalink
run api tests by default
Browse files Browse the repository at this point in the history
  • Loading branch information
lloyd committed Feb 15, 2014
1 parent 612aba6 commit 7ff5093
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion configure
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ cd ..
echo "== Generating Makefile" echo "== Generating Makefile"
cat > ./Makefile <<EOS cat > ./Makefile <<EOS
.PHONY: all clean distclean install package test distro .PHONY: all clean distclean install package test distro
all: distro doc test all: distro doc test test-api
distro: distro:
@cd build && make @cd build && make
Expand All @@ -60,6 +60,9 @@ doc:
test: test:
@cd build && make test @cd build && make test
test-api:
@cd build && make test-api
clean: clean:
@cd build && make clean @cd build && make clean
Expand Down

0 comments on commit 7ff5093

Please sign in to comment.