diff options
author | Thomas Lively <tlively@google.com> | 2024-11-15 16:18:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-15 13:18:29 -0800 |
commit | 368c1edf2a6182dcde7a91e6facbf3dbdd6c7456 (patch) | |
tree | 048eb337ab186d3548a3b4460de39e513e5da4a6 /test/gtest | |
parent | ce1a2b480ae89e65b4d94e1bb3332c5980e2479f (diff) | |
download | binaryen-368c1edf2a6182dcde7a91e6facbf3dbdd6c7456.tar.gz binaryen-368c1edf2a6182dcde7a91e6facbf3dbdd6c7456.tar.bz2 binaryen-368c1edf2a6182dcde7a91e6facbf3dbdd6c7456.zip |
Mark Result and MaybeResult [[nodiscard]] (#7083)
Since these types may be carrying errors that need to be handled or
propagated, it is always an error not to use them in some way. Adding
the [[nodiscard]] attribute caused the compiler to find a few instances
where we were incorrectly ignoring results. Fix these places.
Diffstat (limited to 'test/gtest')
-rw-r--r-- | test/gtest/local-graph.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/gtest/local-graph.cpp b/test/gtest/local-graph.cpp index 5360813ce..d9ec57beb 100644 --- a/test/gtest/local-graph.cpp +++ b/test/gtest/local-graph.cpp @@ -25,7 +25,7 @@ TEST_F(LocalGraphTest, ObstacleBasics) { )wasm"; Module wasm; - WATParser::parseModule(wasm, moduleText); + ASSERT_FALSE(WATParser::parseModule(wasm, moduleText).getErr()); // Get access to the contents of the wasm. auto* func = wasm.functions[0].get(); @@ -79,7 +79,7 @@ TEST_F(LocalGraphTest, ObstacleMultiblock) { ) )wasm"; Module wasm; - WATParser::parseModule(wasm, moduleText); + ASSERT_FALSE(WATParser::parseModule(wasm, moduleText).getErr()); auto* func = wasm.functions[0].get(); auto* block = func->body->cast<Block>(); auto* set = block->list[0]->cast<LocalSet>(); @@ -113,7 +113,7 @@ TEST_F(LocalGraphTest, ObstacleUnreachable) { ) )wasm"; Module wasm; - WATParser::parseModule(wasm, moduleText); + ASSERT_FALSE(WATParser::parseModule(wasm, moduleText).getErr()); auto* func = wasm.functions[0].get(); auto* block = func->body->cast<Block>(); auto* set = block->list[0]->cast<LocalSet>(); @@ -149,7 +149,7 @@ TEST_F(LocalGraphTest, ObstacleMultiGet) { ) )wasm"; Module wasm; - WATParser::parseModule(wasm, moduleText); + ASSERT_FALSE(WATParser::parseModule(wasm, moduleText).getErr()); auto* func = wasm.functions[0].get(); auto* block = func->body->cast<Block>(); auto* set = block->list[0]->cast<LocalSet>(); @@ -185,7 +185,7 @@ TEST_F(LocalGraphTest, ObstacleMultiSet) { ) )wasm"; Module wasm; - WATParser::parseModule(wasm, moduleText); + ASSERT_FALSE(WATParser::parseModule(wasm, moduleText).getErr()); auto* func = wasm.functions[0].get(); auto* block = func->body->cast<Block>(); auto* setA = block->list[0]->cast<LocalSet>(); @@ -227,7 +227,7 @@ TEST_F(LocalGraphTest, ObstacleMultiSetIndexes) { ) )wasm"; Module wasm; - WATParser::parseModule(wasm, moduleText); + ASSERT_FALSE(WATParser::parseModule(wasm, moduleText).getErr()); auto* func = wasm.functions[0].get(); auto* block = func->body->cast<Block>(); auto* setA = block->list[0]->cast<LocalSet>(); @@ -276,7 +276,7 @@ TEST_F(LocalGraphTest, ObstacleMultiSetIf) { ) )wasm"; Module wasm; - WATParser::parseModule(wasm, moduleText); + ASSERT_FALSE(WATParser::parseModule(wasm, moduleText).getErr()); auto* func = wasm.functions[0].get(); auto* block = func->body->cast<Block>(); auto* iff = block->list[0]->cast<If>(); @@ -332,7 +332,7 @@ TEST_F(LocalGraphTest, ObstacleStructSet) { ) )wasm"; Module wasm; - WATParser::parseModule(wasm, moduleText); + ASSERT_FALSE(WATParser::parseModule(wasm, moduleText).getErr()); auto* func = wasm.functions[0].get(); auto* outerBlock = func->body->cast<Block>(); auto* block = outerBlock->list[0]->cast<Block>(); |