[PATCH] D84535: [clangd] Switch from EXPECT_TRUE to ASSERT_TRUE in remote marshalling tests
Kirill Bobyrev via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Jul 27 01:43:13 PDT 2020
kbobyrev marked 5 inline comments as done.
kbobyrev added inline comments.
================
Comment at: clang-tools-extra/clangd/unittests/remote/MarshallingTests.cpp:159
Deserialized = ProtobufMarshaller.fromProtobuf(*Serialized);
EXPECT_TRUE(Deserialized);
----------------
kbobyrev wrote:
> kadircet wrote:
> > maybe make this an assert too (and also consider issuing ASSERT_FALSE directly on the expression instead of an extra assingment)
> Why is would asserting be better here? If I'm not dereferencing it I guess this should be worse because only the first assertion failure is checked, right?
Should be OK as discussed in PM.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D84535/new/
https://reviews.llvm.org/D84535
More information about the cfe-commits
mailing list