diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2016-06-19 10:06:33 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2016-06-29 13:48:33 +0200 |
commit | 5251fe52c337515235e72343e93788aecf148bc4 (patch) | |
tree | 6de98f6ce847485f81e54c33de07d6ebb71995ed /test/abort/testcfg.py | |
parent | ed3d8b13ee9a705d89f9e0397d9e96519e7e47ac (diff) | |
download | node-new-5251fe52c337515235e72343e93788aecf148bc4.tar.gz |
test: add testcfg.py to test/abort/
`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>
Diffstat (limited to 'test/abort/testcfg.py')
-rw-r--r-- | test/abort/testcfg.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/abort/testcfg.py b/test/abort/testcfg.py new file mode 100644 index 0000000000..5e44184568 --- /dev/null +++ b/test/abort/testcfg.py @@ -0,0 +1,6 @@ +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') |