tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

churn.spec.ts (565B)


      1 export const description = `
      2 Stress tests covering robustness in the presence of heavy buffer and texture
      3 memory churn.
      4 `;
      5 
      6 import { makeTestGroup } from '../../common/framework/test_group.js';
      7 import { GPUTest } from '../../webgpu/gpu_test.js';
      8 
      9 export const g = makeTestGroup(GPUTest);
     10 
     11 g.test('churn')
     12  .desc(
     13    `Allocates and populates a huge number of buffers and textures over time,
     14 retaining some while dropping or explicitly destroying others. When finished,
     15 verifies the expected contents of any remaining buffers and textures.`
     16  )
     17  .unimplemented();