summaryrefslogtreecommitdiffstats
path: root/devtools/shared/heapsnapshot/tests/xpcshell/test_DominatorTree_01.js
blob: f98094fd32a3f9fc5b4ee3b03b8e740b7b43437f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";

// Sanity test that we can compute dominator trees.

function run_test() {
  const path = ChromeUtils.saveHeapSnapshot({ runtime: true });
  const snapshot = ChromeUtils.readHeapSnapshot(path);

  const dominatorTree = snapshot.computeDominatorTree();
  ok(dominatorTree);
  ok(DominatorTree.isInstance(dominatorTree));

  let threw = false;
  try {
    new DominatorTree();
  } catch (e) {
    threw = true;
  }
  ok(threw, "Constructor shouldn't be usable");

  do_test_finished();
}