diff options
author | Jeremiah Senkpiel <fishrock123@rocketmail.com> | 2016-05-20 19:05:54 -0400 |
---|---|---|
committer | Rod Vagg <rod@vagg.org> | 2016-06-02 22:42:05 +1000 |
commit | 6439fbfac015662ef3ec19cddd814e55a09635a5 (patch) | |
tree | 2f0c0b8cf7a14211ecce5d51f122d43a624dd41b /Makefile | |
parent | 4d3a7594a5627212c06a4d95aec6e003c2460690 (diff) | |
download | node-new-6439fbfac015662ef3ec19cddd814e55a09635a5.tar.gz |
test: test TTY problems by fakeing a TTY using openpty
Many thanks to thefourtheye and addaleax who helped make the python
bits of this possible.
See https://github.com/nodejs/node/issues/6980 for more info regarding
the related TTY issues.
Refs: https://github.com/nodejs/node/issues/6456
Refs: https://github.com/nodejs/node/pull/6773
Refs: https://github.com/nodejs/node/pull/6816
PR-URL: https://github.com/nodejs/node/pull/6895
Reviewed-By: Rod Vagg <rod@vagg.org>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -118,7 +118,7 @@ test: all $(MAKE) build-addons $(MAKE) cctest $(PYTHON) tools/test.py --mode=release -J \ - addon doctool known_issues message parallel sequential + addon doctool known_issues message pseudo-tty parallel sequential $(MAKE) lint test-parallel: all @@ -183,7 +183,8 @@ test-all-valgrind: test-build test-ci: | build-addons $(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \ --mode=release --flaky-tests=$(FLAKY_TESTS) \ - $(TEST_CI_ARGS) addons doctool known_issues message parallel sequential + $(TEST_CI_ARGS) addons doctool known_issues message pseudo-tty parallel \ + sequential test-release: test-build $(PYTHON) tools/test.py --mode=release |