forked from mirrors/gecko-dev
		
	 640fe52298
			
		
	
	
		640fe52298
		
	
	
	
	
		
			
			MozReview-Commit-ID: F6xUXCgdRE4 --HG-- extra : rebase_source : 65de1b0aba412d9044b5196115f74276caa058f2
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			1,007 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			1,007 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* Any copyright is dedicated to the Public Domain.
 | |
|    http://creativecommons.org/publicdomain/zero/1.0/ */
 | |
| 
 | |
| /**
 | |
|  * Test that we get "MinorGC" markers when we continue to steadily allocate
 | |
|  * objects.
 | |
|  */
 | |
| "use strict";
 | |
| 
 | |
| const { PerformanceFront } = require("devtools/shared/fronts/performance");
 | |
| 
 | |
| add_task(async function() {
 | |
|   // This test runs very slowly on linux32 debug EC2 instances.
 | |
|   requestLongerTimeout(2);
 | |
| 
 | |
|   await addTab(MAIN_DOMAIN + "doc_allocations.html");
 | |
| 
 | |
|   initDebuggerServer();
 | |
|   const client = new DebuggerClient(DebuggerServer.connectPipe());
 | |
|   const form = await connectDebuggerClient(client);
 | |
|   const front = PerformanceFront(client, form);
 | |
|   await front.connect();
 | |
|   const rec = await front.startRecording({ withMarkers: true });
 | |
| 
 | |
|   const markers = await waitForMarkerType(front, ["MinorGC"]);
 | |
|   await front.stopRecording(rec);
 | |
| 
 | |
|   ok(markers.some(m => m.name === "MinorGC" && m.causeName),
 | |
|      "got some MinorGC markers");
 | |
| 
 | |
|   await client.close();
 | |
|   gBrowser.removeCurrentTab();
 | |
| });
 |