Merge branch '27-fix-make-test' into 'master'
Update Makefile to specify dependencies properly for tests Closes #27 See merge request !19
This commit is contained in:
6
Makefile
6
Makefile
@@ -100,10 +100,10 @@ check_objs: $(CHECK_OBJ)
|
||||
|
||||
check_bins: $(CHECK_BINS)
|
||||
|
||||
check: $(CHECK_BINS)
|
||||
r=true ; for bin in $^; do $$bin || r=false; done ; $$r
|
||||
check: $(OBJS) $(CHECK_BINS)
|
||||
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
|
||||
|
||||
test: check acceptance
|
||||
|
Reference in New Issue
Block a user