123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /* Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ */
- var gClient;
- var gDebuggee;
- function run_test()
- {
- initTestDebuggerServer();
- gDebuggee = testGlobal("test-1");
- DebuggerServer.addTestGlobal(gDebuggee);
- let transport = DebuggerServer.connectPipe();
- gClient = new DebuggerClient(transport);
- gClient.connect().then(function (aType, aTraits) {
- attachTestTab(gClient, "test-1", test_attach);
- });
- do_test_pending();
- }
- function test_attach(aResponse, aTabClient)
- {
- aTabClient.attachThread({}, function (aResponse, aThreadClient) {
- do_check_eq(aThreadClient.paused, true);
- aThreadClient.resume(function () {
- test_interrupt(aThreadClient);
- });
- });
- }
- function test_interrupt(aThreadClient)
- {
- do_check_eq(aThreadClient.paused, false);
- aThreadClient.interrupt(function (aResponse) {
- do_check_eq(aThreadClient.paused, true);
- aThreadClient.resume(function () {
- do_check_eq(aThreadClient.paused, false);
- cleanup();
- });
- });
- }
- function cleanup()
- {
- gClient.addListener("closed", function (aEvent) {
- do_test_finished();
- });
- gClient.close();
- }
|