mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 12:45:25 +00:00

PR-URL: https://github.com/nodejs/node/pull/32831 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
42 lines
1.1 KiB
Python
42 lines
1.1 KiB
Python
# Copyright 2019 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Flags: -expose-wasm --wasm_gdb_remote --wasm-pause-waiting-for-debugger --wasm-interpret-all test/debugging/wasm/gdb-server/test_files/test.js
|
|
|
|
import os
|
|
import subprocess
|
|
import unittest
|
|
import sys
|
|
import gdb_rsp
|
|
|
|
# These are set up by Main().
|
|
COMMAND = None
|
|
|
|
|
|
class Tests(unittest.TestCase):
|
|
def test_disconnect(self):
|
|
process = gdb_rsp.PopenDebugStub(COMMAND)
|
|
try:
|
|
# Connect and record the instruction pointer.
|
|
connection = gdb_rsp.GdbRspConnection()
|
|
connection.Close()
|
|
# Reconnect 3 times.
|
|
for _ in range(3):
|
|
connection = gdb_rsp.GdbRspConnection()
|
|
connection.Close()
|
|
finally:
|
|
gdb_rsp.KillProcess(process)
|
|
|
|
|
|
def Main():
|
|
index = sys.argv.index('--')
|
|
args = sys.argv[index + 1:]
|
|
# The remaining arguments go to unittest.main().
|
|
global COMMAND
|
|
COMMAND = args
|
|
unittest.main(argv=sys.argv[:index])
|
|
|
|
if __name__ == '__main__':
|
|
Main()
|