Update Makefile to specify dependencies properly for tests
This commit is contained in:
6
Makefile
6
Makefile
@@ -100,10 +100,10 @@ check_objs: $(CHECK_OBJ)
|
|||||||
|
|
||||||
check_bins: $(CHECK_BINS)
|
check_bins: $(CHECK_BINS)
|
||||||
|
|
||||||
check: $(CHECK_BINS)
|
check: $(OBJS) $(CHECK_BINS)
|
||||||
r=true ; for bin in $^; do $$bin || r=false; done ; $$r
|
r=true ; for bin in $(CHECK_BINS); do $$bin || r=false; done ; $$r
|
||||||
|
|
||||||
acceptance:
|
acceptance: build
|
||||||
cd tests/acceptance && RUBYOPT='-I.' ruby nbd_scenarios -v
|
cd tests/acceptance && RUBYOPT='-I.' ruby nbd_scenarios -v
|
||||||
|
|
||||||
test: check acceptance
|
test: check acceptance
|
||||||
|
Reference in New Issue
Block a user