summaryrefslogtreecommitdiffstats
path: root/dom/webgpu/tests/cts/checkout/src/stress/queries/resolve.spec.ts
blob: da679773958e9d2677f0486d92a91c701dda2ddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export const description = `
Stress tests for query resolution.
`;

import { makeTestGroup } from '../../common/framework/test_group.js';
import { GPUTest } from '../../webgpu/gpu_test.js';

export const g = makeTestGroup(GPUTest);

g.test('many_large_sets')
  .desc(
    `Tests a huge number of resolveQuerySet operations on a huge number of
query sets between render passes.`
  )
  .unimplemented();