mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
5d0b1f4ffa
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>
10 lines
276 B
Python
10 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')
|