[clang] 9e11d68 - Improve reliability of CompilationDatabaseTest
Ellis Hoag via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 14 13:46:26 PDT 2023
Author: Ellis Hoag
Date: 2023-08-14T13:46:21-07:00
New Revision: 9e11d6850a5a5a3518f300769724a5c13d2e6ec6
URL: https://github.com/llvm/llvm-project/commit/9e11d6850a5a5a3518f300769724a5c13d2e6ec6
DIFF: https://github.com/llvm/llvm-project/commit/9e11d6850a5a5a3518f300769724a5c13d2e6ec6.diff
LOG: Improve reliability of CompilationDatabaseTest
We've seen `CompilationDatabaseTest.cpp` fail because the order of the files returned by `getAllFiles()` was in a different order than expected. Use `UnorderedElementsAreArray()` to handle different file orders.
Reviewed By: kadircet
Differential Revision: https://reviews.llvm.org/D157904
Added:
Modified:
clang/unittests/Tooling/CompilationDatabaseTest.cpp
Removed:
################################################################################
diff --git a/clang/unittests/Tooling/CompilationDatabaseTest.cpp b/clang/unittests/Tooling/CompilationDatabaseTest.cpp
index ee91af7a631fe0..5173d472486bfc 100644
--- a/clang/unittests/Tooling/CompilationDatabaseTest.cpp
+++ b/clang/unittests/Tooling/CompilationDatabaseTest.cpp
@@ -6,9 +6,6 @@
//
//===----------------------------------------------------------------------===//
-#include "clang/AST/DeclCXX.h"
-#include "clang/AST/DeclGroup.h"
-#include "clang/Frontend/FrontendAction.h"
#include "clang/Tooling/CompilationDatabase.h"
#include "clang/Tooling/FileMatchTrie.h"
#include "clang/Tooling/JSONCompilationDatabase.h"
@@ -24,6 +21,8 @@ namespace tooling {
using testing::ElementsAre;
using testing::EndsWith;
+using testing::IsEmpty;
+using testing::UnorderedElementsAreArray;
static void expectFailure(StringRef JSONDatabase, StringRef Explanation) {
std::string ErrorMessage;
@@ -83,8 +82,8 @@ getAllCompileCommands(JSONCommandLineSyntax Syntax, StringRef JSONDatabase,
TEST(JSONCompilationDatabase, GetAllFiles) {
std::string ErrorMessage;
- EXPECT_EQ(std::vector<std::string>(),
- getAllFiles("[]", ErrorMessage, JSONCommandLineSyntax::Gnu))
+ EXPECT_THAT(getAllFiles("[]", ErrorMessage, JSONCommandLineSyntax::Gnu),
+ IsEmpty())
<< ErrorMessage;
std::vector<std::string> expected_files;
@@ -97,8 +96,7 @@ TEST(JSONCompilationDatabase, GetAllFiles) {
expected_files.push_back(std::string(PathStorage.str()));
llvm::sys::path::native("//net/file1", PathStorage);
expected_files.push_back(std::string(PathStorage.str()));
- EXPECT_EQ(expected_files,
- getAllFiles(R"json(
+ EXPECT_THAT(getAllFiles(R"json(
[
{
"directory": "//net/dir",
@@ -121,7 +119,8 @@ TEST(JSONCompilationDatabase, GetAllFiles) {
"file": "//net/dir/foo/../file3"
}
])json",
- ErrorMessage, JSONCommandLineSyntax::Gnu))
+ ErrorMessage, JSONCommandLineSyntax::Gnu),
+ UnorderedElementsAreArray(expected_files))
<< ErrorMessage;
}
@@ -550,7 +549,7 @@ TEST(FixedCompilationDatabase, GetAllFiles) {
CommandLine.push_back("two");
FixedCompilationDatabase Database(".", CommandLine);
- EXPECT_EQ(0ul, Database.getAllFiles().size());
+ EXPECT_THAT(Database.getAllFiles(), IsEmpty());
}
TEST(FixedCompilationDatabase, GetAllCompileCommands) {
More information about the cfe-commits
mailing list