From 5251fe52c337515235e72343e93788aecf148bc4 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Sun, 19 Jun 2016 10:06:33 +0200 Subject: [PATCH] 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 Reviewed-By: Colin Ihrig --- test/abort/testcfg.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/abort/testcfg.py diff --git a/test/abort/testcfg.py b/test/abort/testcfg.py new file mode 100644 index 00000000000..5e441845681 --- /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')