From 4b0ab5b30873a3b893ea6f7c74a0bf25792b6043 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Sun, 19 Jun 2016 10:06:33 +0200 Subject: 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 (limited to 'test/abort') 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') -- cgit v1.2.1