mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00

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>
9 lines
276 B
Python
9 lines
276 B
Python
import sys, os
|
|
import copy
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
|
import testpy
|
|
|
|
def GetConfiguration(context, root):
|
|
myContext = copy.copy(context)
|
|
myContext.expect_fail = 1
|
|
return testpy.SimpleTestConfiguration(myContext, root, 'known_issues')
|