Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/devtools/server/tests/xpcshell/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  test_nesting-03.js   Sprache: JAVA

 
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */


"use strict";

// Test that we can detect nested event loops in tabs with the same URL.

add_task(async function () {
  const GLOBAL_NAME = "test-nesting1";

  initTestDevToolsServer();
  addTestGlobal(GLOBAL_NAME);
  addTestGlobal(GLOBAL_NAME);

  // Connect two thread actors, debugging the same debuggee, and both being paused.
  const firstClient = new DevToolsClient(DevToolsServer.connectPipe());
  await firstClient.connect();
  const { threadFront: firstThreadFront } = await attachTestThread(
    firstClient,
    GLOBAL_NAME
  );
  await firstThreadFront.interrupt();

  const secondClient = new DevToolsClient(DevToolsServer.connectPipe());
  await secondClient.connect();
  const { threadFront: secondThreadFront } = await attachTestThread(
    secondClient,
    GLOBAL_NAME
  );
  await secondThreadFront.interrupt();

  // Then check how concurrent resume work
  let result;
  try {
    result = await firstThreadFront.resume();
  } catch (e) {
    Assert.ok(e.includes("wrongOrder"), "rejects with the wrong order");
  }
  Assert.ok(!result, "no response");

  result = await secondThreadFront.resume();
  Assert.ok(true"resumed as expected");

  await firstThreadFront.resume();

  Assert.ok(true"resumed as expected");
  await firstClient.close();

  await finishClient(secondClient);
});

97%


¤ Dauer der Verarbeitung: 0.15 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung ist noch experimentell.