Skip to content

Commit b015dcb

Browse files
committed
PEL: Remove callout data file after testcases
Delete the temporary /tmp/phalPELCalloutsJson.* files used by some testcases after they are done with it. Tested: No longer see files like '/tmp/phalPELCalloutsJson.MbM31h' when unit tests are complete. Change-Id: Iff2efac1391da7e5c22727a39b8a8b4d98816da5 Signed-off-by: Matt Spinler <[email protected]>
1 parent 7b92372 commit b015dcb

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

test/openpower-pels/pel_manager_test.cpp

+9-7
Original file line numberDiff line numberDiff line change
@@ -1237,7 +1237,7 @@ TEST_F(ManagerTest, TestFruPlug)
12371237
checkDeconfigured(true);
12381238
}
12391239

1240-
int createHWIsolatedCalloutFile()
1240+
std::pair<int, std::filesystem::path> createHWIsolatedCalloutFile()
12411241
{
12421242
json jsonCalloutDataList(nlohmann::json::value_t::array);
12431243
json jsonDimmCallout;
@@ -1259,15 +1259,15 @@ int createHWIsolatedCalloutFile()
12591259
if (fileFD == -1)
12601260
{
12611261
perror("Failed to create PELCallouts file");
1262-
return -1;
1262+
return {-1, {}};
12631263
}
12641264

12651265
ssize_t rc = write(fileFD, calloutData.c_str(), calloutData.size());
12661266
if (rc == -1)
12671267
{
12681268
perror("Failed to write PELCallouts file");
12691269
close(fileFD);
1270-
return -1;
1270+
return {-1, {}};
12711271
}
12721272

12731273
// Ensure we seek to the beginning of the file
@@ -1276,9 +1276,9 @@ int createHWIsolatedCalloutFile()
12761276
{
12771277
perror("Failed to set SEEK_SET for PELCallouts file");
12781278
close(fileFD);
1279-
return -1;
1279+
return {-1, {}};
12801280
}
1281-
return fileFD;
1281+
return {fileFD, calloutFile};
12821282
}
12831283

12841284
void appendFFDCEntry(int fd, uint8_t subTypeJson, uint8_t version,
@@ -1370,7 +1370,7 @@ TEST_F(ManagerTest, TestPELDeleteWithoutHWIsolation)
13701370
manager.erase(42);
13711371
EXPECT_FALSE(findAnyPELInRepo());
13721372

1373-
int fd = createHWIsolatedCalloutFile();
1373+
auto [fd, calloutFile] = createHWIsolatedCalloutFile();
13741374
ASSERT_NE(fd, -1);
13751375
uint8_t subTypeJson = 0xCA;
13761376
uint8_t version = 0x01;
@@ -1380,6 +1380,7 @@ TEST_F(ManagerTest, TestPELDeleteWithoutHWIsolation)
13801380
phosphor::logging::Entry::Level::Error, additionalData,
13811381
associations, ffdcEntries);
13821382
close(fd);
1383+
std::filesystem::remove(calloutFile);
13831384

13841385
auto pelPathInRepo = findAnyPELInRepo();
13851386
auto unguardedData = readPELFile(*pelPathInRepo);
@@ -1452,7 +1453,7 @@ TEST_F(ManagerTest, TestPELDeleteWithHWIsolation)
14521453
std::map<std::string, std::string> additionalData;
14531454
std::vector<std::string> associations;
14541455

1455-
int fd = createHWIsolatedCalloutFile();
1456+
auto [fd, calloutFile] = createHWIsolatedCalloutFile();
14561457
ASSERT_NE(fd, -1);
14571458
uint8_t subTypeJson = 0xCA;
14581459
uint8_t version = 0x01;
@@ -1462,6 +1463,7 @@ TEST_F(ManagerTest, TestPELDeleteWithHWIsolation)
14621463
phosphor::logging::Entry::Level::Error, additionalData,
14631464
associations, ffdcEntries);
14641465
close(fd);
1466+
std::filesystem::remove(calloutFile);
14651467

14661468
auto pelFile = findAnyPELInRepo();
14671469
EXPECT_TRUE(pelFile);

0 commit comments

Comments
 (0)