test: move debugger repl into own section

This commit is contained in:
Timothy J Fontaine 2014-01-13 17:24:14 -08:00
Родитель 6cc95b06ea
Коммит 574f71444c
12 изменённых файлов: 18 добавлений и 2 удалений

Просмотреть файл

@ -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');

Просмотреть файл

6
test/debugger/testcfg.py Normal file
Просмотреть файл

@ -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):