@@ -1237,7 +1237,7 @@ TEST_F(ManagerTest, TestFruPlug)
1237
1237
checkDeconfigured (true );
1238
1238
}
1239
1239
1240
- int createHWIsolatedCalloutFile ()
1240
+ std::pair< int , std::filesystem::path> createHWIsolatedCalloutFile ()
1241
1241
{
1242
1242
json jsonCalloutDataList (nlohmann::json::value_t ::array);
1243
1243
json jsonDimmCallout;
@@ -1259,15 +1259,15 @@ int createHWIsolatedCalloutFile()
1259
1259
if (fileFD == -1 )
1260
1260
{
1261
1261
perror (" Failed to create PELCallouts file" );
1262
- return - 1 ;
1262
+ return {- 1 , {}} ;
1263
1263
}
1264
1264
1265
1265
ssize_t rc = write (fileFD, calloutData.c_str (), calloutData.size ());
1266
1266
if (rc == -1 )
1267
1267
{
1268
1268
perror (" Failed to write PELCallouts file" );
1269
1269
close (fileFD);
1270
- return - 1 ;
1270
+ return {- 1 , {}} ;
1271
1271
}
1272
1272
1273
1273
// Ensure we seek to the beginning of the file
@@ -1276,9 +1276,9 @@ int createHWIsolatedCalloutFile()
1276
1276
{
1277
1277
perror (" Failed to set SEEK_SET for PELCallouts file" );
1278
1278
close (fileFD);
1279
- return - 1 ;
1279
+ return {- 1 , {}} ;
1280
1280
}
1281
- return fileFD;
1281
+ return { fileFD, calloutFile} ;
1282
1282
}
1283
1283
1284
1284
void appendFFDCEntry (int fd, uint8_t subTypeJson, uint8_t version,
@@ -1370,7 +1370,7 @@ TEST_F(ManagerTest, TestPELDeleteWithoutHWIsolation)
1370
1370
manager.erase (42 );
1371
1371
EXPECT_FALSE (findAnyPELInRepo ());
1372
1372
1373
- int fd = createHWIsolatedCalloutFile ();
1373
+ auto [fd, calloutFile] = createHWIsolatedCalloutFile ();
1374
1374
ASSERT_NE (fd, -1 );
1375
1375
uint8_t subTypeJson = 0xCA ;
1376
1376
uint8_t version = 0x01 ;
@@ -1380,6 +1380,7 @@ TEST_F(ManagerTest, TestPELDeleteWithoutHWIsolation)
1380
1380
phosphor::logging::Entry::Level::Error, additionalData,
1381
1381
associations, ffdcEntries);
1382
1382
close (fd);
1383
+ std::filesystem::remove (calloutFile);
1383
1384
1384
1385
auto pelPathInRepo = findAnyPELInRepo ();
1385
1386
auto unguardedData = readPELFile (*pelPathInRepo);
@@ -1452,7 +1453,7 @@ TEST_F(ManagerTest, TestPELDeleteWithHWIsolation)
1452
1453
std::map<std::string, std::string> additionalData;
1453
1454
std::vector<std::string> associations;
1454
1455
1455
- int fd = createHWIsolatedCalloutFile ();
1456
+ auto [fd, calloutFile] = createHWIsolatedCalloutFile ();
1456
1457
ASSERT_NE (fd, -1 );
1457
1458
uint8_t subTypeJson = 0xCA ;
1458
1459
uint8_t version = 0x01 ;
@@ -1462,6 +1463,7 @@ TEST_F(ManagerTest, TestPELDeleteWithHWIsolation)
1462
1463
phosphor::logging::Entry::Level::Error, additionalData,
1463
1464
associations, ffdcEntries);
1464
1465
close (fd);
1466
+ std::filesystem::remove (calloutFile);
1465
1467
1466
1468
auto pelFile = findAnyPELInRepo ();
1467
1469
EXPECT_TRUE (pelFile);
0 commit comments