mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
5251fe52c3
`python tools/test.py abort` won't work without one. PR-URL: https://github.com/nodejs/node/pull/6734 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
7 lines
194 B
Python
7 lines
194 B
Python
import sys, os
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
|
import testpy
|
|
|
|
def GetConfiguration(context, root):
|
|
return testpy.SimpleTestConfiguration(context, root, 'abort')
|