Skip to content

Commit

Permalink
Merge pull request #743 from kolyshkin/fix-723
Browse files Browse the repository at this point in the history
Makefile: replace TAP with TAPTOOL
  • Loading branch information
hqhq committed Jan 25, 2022
2 parents 8db8957 + 14cd51e commit 0105384
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PREFIX ?= $(DESTDIR)/usr
BINDIR ?= $(DESTDIR)/usr/bin
TAP ?= tap
TAPTOOL ?= tap

BUILDTAGS=
RUNTIME ?= runc
Expand Down Expand Up @@ -50,7 +50,7 @@ localvalidation:
exit 1; \
fi; \
done
RUNTIME=$(RUNTIME) $(TAP) $(VALIDATION_TESTS)
RUNTIME=$(RUNTIME) $(TAPTOOL) $(VALIDATION_TESTS)

.PHONY: validation-executables
validation-executables: $(VALIDATION_TESTS)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ If you cannot install node-tap, you can probably run the test suite with another
For example, with [`prove`][prove]:

```console
$ sudo make TAP='prove -Q -j9' RUNTIME=runc VALIDATION_TESTS=validation/pidfile/pidfile.t localvalidation
$ sudo make TAPTOOL='prove -Q -j9' RUNTIME=runc VALIDATION_TESTS=validation/pidfile/pidfile.t localvalidation
RUNTIME=runc prove -Q -j9 validation/pidfile.t
All tests successful.
Files=1, Tests=1, 0 wallclock secs ( 0.01 usr 0.01 sys + 0.03 cusr 0.03 csys = 0.08 CPU)
Expand Down

0 comments on commit 0105384

Please sign in to comment.