mirror of https://github.com/lukechilds/node.git
Browse Source
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>v6.x
Rich Trott
9 years ago
committed by
Evan Lucas
3 changed files with 10 additions and 7 deletions
@ -1,6 +1,9 @@ |
|||||
import sys, os |
import sys, os |
||||
|
import copy |
||||
sys.path.append(os.path.join(os.path.dirname(__file__), '..')) |
sys.path.append(os.path.join(os.path.dirname(__file__), '..')) |
||||
import testpy |
import testpy |
||||
|
|
||||
def GetConfiguration(context, root): |
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') |
||||
|
Loading…
Reference in new issue