Remove empty disabled generator tests.
This CL removes the empty FMix disabled test from the GLSL and HLSL generators. There is no FMix in WGSL. Change-Id: I620ed796249ce20b4b5ecb95e3035681743455c0 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/104467 Commit-Queue: Dan Sinclair <dsinclair@chromium.org> Reviewed-by: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com>
This commit is contained in:
parent
26aa582054
commit
6f39b6c416
|
@ -234,10 +234,6 @@ INSTANTIATE_TEST_SUITE_P(GlslGeneratorImplTest_Import,
|
|||
GlslImportData{"clamp", "clamp"},
|
||||
GlslImportData{"smoothstep", "smoothstep"}));
|
||||
|
||||
TEST_F(GlslGeneratorImplTest_Import, DISABLED_GlslImportData_FMix) {
|
||||
FAIL();
|
||||
}
|
||||
|
||||
using GlslImportData_TripleParam_Int_Test = TestParamHelper<GlslImportData>;
|
||||
TEST_P(GlslImportData_TripleParam_Int_Test, IntScalar) {
|
||||
auto param = GetParam();
|
||||
|
|
|
@ -237,10 +237,6 @@ INSTANTIATE_TEST_SUITE_P(HlslGeneratorImplTest_Import,
|
|||
HlslImportData{"clamp", "clamp"},
|
||||
HlslImportData{"smoothstep", "smoothstep"}));
|
||||
|
||||
TEST_F(HlslGeneratorImplTest_Import, DISABLED_HlslImportData_FMix) {
|
||||
FAIL();
|
||||
}
|
||||
|
||||
using HlslImportData_TripleParam_Int_Test = TestParamHelper<HlslImportData>;
|
||||
TEST_P(HlslImportData_TripleParam_Int_Test, IntScalar) {
|
||||
auto param = GetParam();
|
||||
|
|
Loading…
Reference in New Issue