[PATCH] D83661: [llvm][unittests] Fix LLVM-Unit :: Support/./SupportTests/ProgramEnvTest.TestExecuteAndWaitStatistics on Solaris
Rainer Orth via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 14 02:30:56 PDT 2020
This revision was automatically updated to reflect the committed changes.
ro marked an inline comment as done.
Closed by commit rG2d1fe0c37247: [llvm][unittests] Fix ProgramEnvTest.TestExecuteAndWaitStatistics on Solaris (authored by ro).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D83661/new/
https://reviews.llvm.org/D83661
Files:
llvm/unittests/Support/ProgramTest.cpp
Index: llvm/unittests/Support/ProgramTest.cpp
===================================================================
--- llvm/unittests/Support/ProgramTest.cpp
+++ llvm/unittests/Support/ProgramTest.cpp
@@ -357,7 +357,6 @@
&ExecutionFailed, &ProcStat);
ASSERT_EQ(0, RetCode);
ASSERT_TRUE(ProcStat);
- ASSERT_GT(ProcStat->PeakMemory, 0U);
ASSERT_GE(ProcStat->UserTime, std::chrono::microseconds(0));
ASSERT_GE(ProcStat->TotalTime, ProcStat->UserTime);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D83661.277719.patch
Type: text/x-patch
Size: 496 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200714/b520db9e/attachment.bin>
More information about the llvm-commits
mailing list