Module: Mesa Branch: master Commit: ad90e9fee6ea2c7bf05104a589d60e9368f5427e URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ad90e9fee6ea2c7bf05104a589d60e9368f5427e
Author: Daniel Stone <[email protected]> Date: Thu Nov 26 23:42:13 2020 +0000 microsoft/clc: Disable broken f32 -> i64/u64 test Saturated conversions from f32 -> i64/u64 need to be reworked in the upstream tree. Disable this test until we've done so, since it doesn't pass currently. Signed-off-by: Daniel Stone <[email protected]> Reviewed-by: Jesse Natalie <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7537> --- src/microsoft/clc/clc_compiler_test.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/microsoft/clc/clc_compiler_test.cpp b/src/microsoft/clc/clc_compiler_test.cpp index eb7509d4fe0..882db6ac23f 100644 --- a/src/microsoft/clc/clc_compiler_test.cpp +++ b/src/microsoft/clc/clc_compiler_test.cpp @@ -81,7 +81,8 @@ TEST_F(ComputeTest, two_global_arrays) EXPECT_EQ(g1[i], expected[i]); } -TEST_F(ComputeTest, i64tof32) +/* Disabled until saturated conversions from f32->i64 fixed (mesa/mesa#3824) */ +TEST_F(ComputeTest, DISABLED_i64tof32) { const char *kernel_source = "__kernel void main_test(__global long *out, __constant long *in)\n\ _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
