summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEd Tanous <ed@tanous.net>2024-03-28 03:22:44 +0300
committerEd Tanous <ed@tanous.net>2024-04-01 20:33:50 +0300
commit842c8f609be3957b844c85cb4b2d77c39d6ee9db (patch)
treecc08e1d45d308ef07751557ed913156019187fae /test
parent5be2b14a2553f2aa0b64d1f88494b0561739d964 (diff)
downloadbmcweb-842c8f609be3957b844c85cb4b2d77c39d6ee9db.tar.xz
Delete old tests
These tests are commented out, and have been for a very long time. Clearly they don't matter. Change-Id: I084378ee9bc43bb64bd6e134398bbf2173d263ff Signed-off-by: Ed Tanous <ed@tanous.net>
Diffstat (limited to 'test')
-rw-r--r--test/include/ibm/lock_test.cpp54
1 files changed, 0 insertions, 54 deletions
diff --git a/test/include/ibm/lock_test.cpp b/test/include/ibm/lock_test.cpp
index 087a84b431..9570ec6f90 100644
--- a/test/include/ibm/lock_test.cpp
+++ b/test/include/ibm/lock_test.cpp
@@ -166,43 +166,6 @@ TEST_F(LockTest, MultiRequestWithConflictduetoSameSegmentLength)
const LockRequests& t = request;
EXPECT_TRUE(lockManager.isConflictRequest(t));
}
-#if 0 // Comment out due to bad code in include/ibm/locks.hpp
-TEST_F(LockTest, MultiRequestWithoutConflictduetoDifferentSegmentData)
-{
- MockLock lockManager;
- // Corrupt the locktype
- std::get<2>(request[0]) = "Write";
- // Match the segment lengths to points them to lock similar kind of
- // resource
- std::get<4>(request[0])[0].first = "DontLock";
- std::get<4>(request[0])[1].first = "LockAll";
-
- // Change the resource id(2nd byte) of first record, so the locks are
- // different so no conflict
- std::get<3>(request[0]) = 216179379183550464; // HEX 03 00 06 00 00 00 00 00
- std::get<3>(request[1]) = 288236973221478400; // HEX 04 00 06 00 00 00 00 00
- const LockRequests& t = request;
- EXPECT_FALSE(lockManager.isConflictRequest(t));
-}
-
-TEST_F(LockTest, MultiRequestWithConflictduetoSameSegmentData)
-{
- MockLock lockManager;
- // Corrupt the locktype
- std::get<2>(request[0]) = "Write";
- // Match the segment lengths to points them to lock similar kind of
- // resource
- std::get<4>(request[0])[0].first = "DontLock";
- std::get<4>(request[0])[1].first = "LockAll";
- // Dont Change the resource id(1st & 2nd byte) at all, so that the
- // conflict occurs from the second segment which is trying to lock all
- // the resources.
- std::get<3>(request[0]) = 216173882346831872; // 03 00 01 00 2B 00 00 00
- std::get<3>(request[1]) = 216173882346831872; // 03 00 01 00 2B 00 00 00
- const LockRequests& t = request;
- EXPECT_TRUE(lockManager.isConflictRequest(t));
-}
-#endif
TEST_F(LockTest, MultiRequestWithoutConflictduetoDifferentSegmentLength)
{
@@ -243,23 +206,6 @@ TEST_F(LockTest, MultiRequestWithoutConflictduetoReadLocktypeAndLockall)
EXPECT_FALSE(lockManager.isConflictRequest(t));
}
-#if 0 // Comment out due to bad code in include/ibm/locks.hpp
-TEST_F(LockTest, RequestConflictedWithLockTableEntries)
-{
- MockLock lockManager;
- const LockRequests& t = request1;
- auto rc1 = lockManager.isConflictWithTable(t);
- // Corrupt the lock type
- std::get<2>(request[0]) = "Write";
- // Corrupt the lockflag
- std::get<4>(request[0])[1].first = "LockAll";
- const LockRequests& p = request;
- auto rc2 = lockManager.isConflictWithTable(p);
- // Return a Conflict
- EXPECT_TRUE(rc2.first);
-}
-#endif
-
TEST_F(LockTest, RequestNotConflictedWithLockTableEntries)
{
MockLock lockManager;