mirror of
https://github.com/frej/fast-export.git
synced 2026-05-07 07:06:16 +02:00
test: use make to run the tests
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
This commit is contained in:
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
@@ -18,4 +18,4 @@ jobs:
|
|||||||
submodules: 'recursive'
|
submodules: 'recursive'
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: ./run-tests
|
run: make -C t
|
||||||
|
|||||||
12
t/Makefile
Normal file
12
t/Makefile
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
T = $(wildcard *.t)
|
||||||
|
|
||||||
|
test: $(T)
|
||||||
|
@$(MAKE) --silent clean
|
||||||
|
|
||||||
|
$(T): clean
|
||||||
|
./$@ $(TEST_OPTS)
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@rm -fr test-results
|
||||||
|
|
||||||
|
.PHONY: test $(T) clean
|
||||||
Reference in New Issue
Block a user