Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
Add Makefile at the root
Browse files Browse the repository at this point in the history
This Makefile is just to launch Sharness tests for now.
  • Loading branch information
chriscool committed Oct 3, 2016
1 parent 398cd6c commit c0f1c5d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
all: help

test: test_expensive

test_short: test_sharness_short

test_expensive: test_sharness_expensive

test_sharness_short:
$(MAKE) -j1 -C test/sharness/

test_sharness_expensive:
TEST_EXPENSIVE=1 $(MAKE) -j1 -C test/sharness/

help:
@echo 'TESTING TARGETS:'
@echo ''
@echo ' test - Run expensive tests'
@echo ' test_short - Run short tests and sharness tests'
@echo ' test_expensive - Run a few extras'
@echo ' test_sharness_short'
@echo ' test_sharness_expensive'
@echo ''

0 comments on commit c0f1c5d

Please sign in to comment.