test: move debugger repl into own section
This commit is contained in:
Родитель
6cc95b06ea
Коммит
574f71444c
3
Makefile
3
Makefile
|
@ -131,6 +131,9 @@ test-pummel: all
|
|||
test-internet: all
|
||||
$(PYTHON) tools/test.py internet
|
||||
|
||||
test-debugger: all
|
||||
$(PYTHON) tools/test.py debugger
|
||||
|
||||
test-npm: node
|
||||
./node deps/npm/test/run.js
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
var repl = require('../simple/helper-debugger-repl.js');
|
||||
var repl = require('./helper-debugger-repl.js');
|
||||
|
||||
repl.startDebugger('break-in-module/main.js');
|
||||
|
|
@ -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, 'debugger')
|
|
@ -1322,7 +1322,14 @@ def GetSpecialCommandProcessor(value):
|
|||
return ExpandCommand
|
||||
|
||||
|
||||
BUILT_IN_TESTS = ['simple', 'pummel', 'message', 'internet', 'gc']
|
||||
BUILT_IN_TESTS = [
|
||||
'simple',
|
||||
'pummel',
|
||||
'message',
|
||||
'internet',
|
||||
'gc',
|
||||
'debugger',
|
||||
]
|
||||
|
||||
|
||||
def GetSuites(test_root):
|
||||
|
|
Загрузка…
Ссылка в новой задаче