Skip to content

Commit 0105384

Browse files
authored
Merge pull request opencontainers#743 from kolyshkin/fix-723
Makefile: replace TAP with TAPTOOL
2 parents 8db8957 + 14cd51e commit 0105384

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PREFIX ?= $(DESTDIR)/usr
22
BINDIR ?= $(DESTDIR)/usr/bin
3-
TAP ?= tap
3+
TAPTOOL ?= tap
44

55
BUILDTAGS=
66
RUNTIME ?= runc
@@ -50,7 +50,7 @@ localvalidation:
5050
exit 1; \
5151
fi; \
5252
done
53-
RUNTIME=$(RUNTIME) $(TAP) $(VALIDATION_TESTS)
53+
RUNTIME=$(RUNTIME) $(TAPTOOL) $(VALIDATION_TESTS)
5454

5555
.PHONY: validation-executables
5656
validation-executables: $(VALIDATION_TESTS)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ If you cannot install node-tap, you can probably run the test suite with another
113113
For example, with [`prove`][prove]:
114114

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

0 commit comments

Comments
 (0)