From 76bc952af3f583eac0ce51556ccdbe24d432d42a Mon Sep 17 00:00:00 2001 From: Stefano Milizia Date: Tue, 11 Aug 2020 10:40:11 +0200 Subject: [PATCH] Fix test --- ...ransformation_flatten_conditional_branch_test.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/fuzz/transformation_flatten_conditional_branch_test.cpp b/test/fuzz/transformation_flatten_conditional_branch_test.cpp index c2f4915f96b..8c21c2d0fea 100644 --- a/test/fuzz/transformation_flatten_conditional_branch_test.cpp +++ b/test/fuzz/transformation_flatten_conditional_branch_test.cpp @@ -411,12 +411,12 @@ TEST(TransformationFlattenConditionalBranchTest, LoadStoreFunctionCall) { .IsApplicable(context.get(), transformation_context)); // Not all fresh ids given are distinct. - ASSERT_FALSE( - TransformationFlattenConditionalBranch( - 31, - {{MakeInstructionDescriptor(6, SpvOpLoad, 0), {100, 101, 102, 103}}}, - {103, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115}) - .IsApplicable(context.get(), transformation_context)); + ASSERT_FALSE(TransformationFlattenConditionalBranch( + 31, + {{MakeInstructionDescriptor(6, SpvOpLoad, 0), + {100, 101, 102, 103, 104}}}, + {103, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115}) + .IsApplicable(context.get(), transformation_context)); // %48 heads a construct where an OpSampledImage instruction is separated from // its use by an OpLoad instruction, so the block cannot be split around the