summaryrefslogtreecommitdiff
path: root/test/known_issues/testcfg.py
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-05-03 20:51:41 -0700
committerRich Trott <rtrott@gmail.com>2016-05-06 15:14:38 -0700
commit5d0b1f4ffa194b65b5320dfc6889ca0b17db2168 (patch)
tree25effe6690cfb6a1bdc3497057b05f46050aafec /test/known_issues/testcfg.py
parentb8573d05552b7df6c496ab5e56a1fe2a7c82eda6 (diff)
downloadandroid-node-v8-5d0b1f4ffa194b65b5320dfc6889ca0b17db2168.tar.gz
android-node-v8-5d0b1f4ffa194b65b5320dfc6889ca0b17db2168.tar.bz2
android-node-v8-5d0b1f4ffa194b65b5320dfc6889ca0b17db2168.zip
test: run known_issues tests in CI
Add `known_issues` tests to `make test` and `make test-ci` targets and their equivalents on Windows. PR-URL: https://github.com/nodejs/node/pull/6559 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'test/known_issues/testcfg.py')
-rw-r--r--test/known_issues/testcfg.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/known_issues/testcfg.py b/test/known_issues/testcfg.py
index af4f56574b..d8d2ba22b5 100644
--- a/test/known_issues/testcfg.py
+++ b/test/known_issues/testcfg.py
@@ -1,6 +1,9 @@
import sys, os
+import copy
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
import testpy
def GetConfiguration(context, root):
- return testpy.SimpleTestConfiguration(context, root, 'known_issues')
+ myContext = copy.copy(context)
+ myContext.expect_fail = 1
+ return testpy.SimpleTestConfiguration(myContext, root, 'known_issues')