зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1024774
- Part 6: Add a mochitest-chrome sanity check test. r=bholley
This commit is contained in:
Родитель
a4bd068288
Коммит
c66579bc06
|
@ -85,3 +85,4 @@ skip-if = buildapp == 'mulet'
|
||||||
[test_director.html]
|
[test_director.html]
|
||||||
[test_director_connectToChild.html]
|
[test_director_connectToChild.html]
|
||||||
skip-if = buildapp == 'mulet'
|
skip-if = buildapp == 'mulet'
|
||||||
|
[test_SaveHeapSnapshot.html]
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
<!DOCTYPE HTML>
|
||||||
|
<html>
|
||||||
|
<!--
|
||||||
|
Bug 1024774 - Sanity test that we can take a heap snapshot in a web window.
|
||||||
|
-->
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>ChromeUtils.saveHeapSnapshot test</title>
|
||||||
|
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
||||||
|
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<pre id="test">
|
||||||
|
<script>
|
||||||
|
SimpleTest.waitForExplicitFinish();
|
||||||
|
window.onload = function() {
|
||||||
|
ok(ChromeUtils, "The ChromeUtils interface should be exposed in chrome windows.");
|
||||||
|
|
||||||
|
var file = Components.classes["@mozilla.org/file/directory_service;1"]
|
||||||
|
.getService(Components.interfaces.nsIProperties)
|
||||||
|
.get("CurWorkD", Components.interfaces.nsILocalFile);
|
||||||
|
file.append("core-dump.tmp");
|
||||||
|
|
||||||
|
ChromeUtils.saveHeapSnapshot(file.path, { runtime: true });
|
||||||
|
ok(true, "Should save a heap snapshot and shouldn't throw.");
|
||||||
|
SimpleTest.finish();
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
</pre>
|
||||||
|
</body>
|
||||||
|
</html>
|
Загрузка…
Ссылка в новой задаче