mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-12-08 13:14:56 +00:00
Fix missing printed errors from run-parallel
These errors were captured, but not printed. Fix the lint error that was not being displayed. Change-Id: I56da5c3a044b8a8e41695883ce780aca6245ad04 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/44780 Reviewed-by: Antonio Maiorano <amaiorano@google.com> Commit-Queue: Ben Clayton <bclayton@google.com>
This commit is contained in:
committed by
Commit Bot service account
parent
c7e4032009
commit
fd3cf82056
@@ -43,7 +43,7 @@ TEST_F(ParserImplTest, FunctionHeader_DecoratedReturnType) {
|
||||
EXPECT_EQ(f->name, "main");
|
||||
EXPECT_EQ(f->params.size(), 0u);
|
||||
EXPECT_TRUE(f->return_type->Is<type::F32>());
|
||||
ASSERT_TRUE(f->return_type_decorations.size() == 1u);
|
||||
ASSERT_EQ(f->return_type_decorations.size(), 1u);
|
||||
auto* loc = f->return_type_decorations[0]->As<ast::LocationDecoration>();
|
||||
ASSERT_TRUE(loc != nullptr);
|
||||
EXPECT_EQ(loc->value(), 1u);
|
||||
|
||||
Reference in New Issue
Block a user