File tree 4 files changed +8
-8
lines changed
src/webgpu/api/validation/buffer
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ import {
11
11
} from '../../../capability_info.js' ;
12
12
import { GPUConst } from '../../../constants.js' ;
13
13
import { kMaxSafeMultipleOf8 } from '../../../util/math.js' ;
14
- import { ValidationTest } from '../validation_test.js' ;
14
+ import { AllFeaturesMaxLimitsValidationTest } from '../validation_test.js' ;
15
15
16
- export const g = makeTestGroup ( ValidationTest ) ;
16
+ export const g = makeTestGroup ( AllFeaturesMaxLimitsValidationTest ) ;
17
17
18
18
assert ( kBufferSizeAlignment === 4 ) ;
19
19
g . test ( 'size' )
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ Validation tests for GPUBuffer.destroy.
5
5
import { makeTestGroup } from '../../../../common/framework/test_group.js' ;
6
6
import { kBufferUsages } from '../../../capability_info.js' ;
7
7
import { GPUConst } from '../../../constants.js' ;
8
- import { ValidationTest } from '../validation_test.js' ;
8
+ import { AllFeaturesMaxLimitsValidationTest } from '../validation_test.js' ;
9
9
10
- export const g = makeTestGroup ( ValidationTest ) ;
10
+ export const g = makeTestGroup ( AllFeaturesMaxLimitsValidationTest ) ;
11
11
12
12
g . test ( 'all_usages' )
13
13
. desc ( 'Test destroying buffers of every usage type.' )
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ import { attemptGarbageCollection } from '../../../../common/util/collect_garbag
7
7
import { assert , unreachable } from '../../../../common/util/util.js' ;
8
8
import { kBufferUsages } from '../../../capability_info.js' ;
9
9
import { GPUConst } from '../../../constants.js' ;
10
- import { ValidationTest } from '../validation_test.js' ;
10
+ import { AllFeaturesMaxLimitsValidationTest } from '../validation_test.js' ;
11
11
12
- class F extends ValidationTest {
12
+ class F extends AllFeaturesMaxLimitsValidationTest {
13
13
async testMapAsyncCall (
14
14
expectation :
15
15
| 'success'
Original file line number Diff line number Diff line change 9
9
` ;
10
10
11
11
import { makeTestGroup } from '../../../../common/framework/test_group.js' ;
12
- import { ValidationTest } from '../validation_test.js' ;
12
+ import { AllFeaturesMaxLimitsValidationTest } from '../validation_test.js' ;
13
13
14
- export const g = makeTestGroup ( ValidationTest ) ;
14
+ export const g = makeTestGroup ( AllFeaturesMaxLimitsValidationTest ) ;
You can’t perform that action at this time.
0 commit comments