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

Commit c0f1c5d

Browse files
committed
Add Makefile at the root
This Makefile is just to launch Sharness tests for now.
1 parent 398cd6c commit c0f1c5d

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Makefile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
all: help
2+
3+
test: test_expensive
4+
5+
test_short: test_sharness_short
6+
7+
test_expensive: test_sharness_expensive
8+
9+
test_sharness_short:
10+
$(MAKE) -j1 -C test/sharness/
11+
12+
test_sharness_expensive:
13+
TEST_EXPENSIVE=1 $(MAKE) -j1 -C test/sharness/
14+
15+
help:
16+
@echo 'TESTING TARGETS:'
17+
@echo ''
18+
@echo ' test - Run expensive tests'
19+
@echo ' test_short - Run short tests and sharness tests'
20+
@echo ' test_expensive - Run a few extras'
21+
@echo ' test_sharness_short'
22+
@echo ' test_sharness_expensive'
23+
@echo ''

0 commit comments

Comments
 (0)