diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2016-06-19 10:06:33 +0200 |
---|---|---|
committer | Jeremiah Senkpiel <fishrock123@rocketmail.com> | 2016-07-05 22:36:47 +0200 |
commit | 4b0ab5b30873a3b893ea6f7c74a0bf25792b6043 (patch) | |
tree | 38ac8983b8663fc7778ff44210d2c680fe9c7a25 /test/abort | |
parent | 8f7baffee48800be915792d6ab9aff931a71fdc2 (diff) | |
download | node-new-4b0ab5b30873a3b893ea6f7c74a0bf25792b6043.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')
-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') |