Skip to content

Commit

Permalink
Undoing unnecessary clang format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ABenC377 committed Dec 20, 2024
1 parent 314dd85 commit 4e9cffc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions test/unit/aarch64/AuxiliaryFunctionsTest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ TEST(AArch64AuxiliaryFunctionTest, BitfieldManipulate) {
"Attempted to use a rotate amount of 16 in bitfieldManipulate which is "
"greater than or equal to the data type size of 16b in use");
ASSERT_DEATH({ bitfieldManipulate<uint16_t>(0, 0, 0, 16, false); },
"Attempted to use a source bit position value of 16 in "
"bitfieldManipulate which is greater than or equal to the data "
"type size of 16b in use");
"Attempted to use a source bit position value of 16 in "
"bitfieldManipulate which is greater than or equal to the data "
"type size of 16b in use");

// uint32
EXPECT_EQ(bitfieldManipulate<uint32_t>(0x0000FFFF, 0xFFFF0000, 0, 0, false),
Expand Down Expand Up @@ -105,9 +105,9 @@ TEST(AArch64AuxiliaryFunctionTest, BitfieldManipulate) {
"Attempted to use a rotate amount of 32 in bitfieldManipulate which is "
"greater than or equal to the data type size of 32b in use");
ASSERT_DEATH({ bitfieldManipulate<uint32_t>(0, 0, 0, 32, false); },
"Attempted to use a source bit position value of 32 in "
"bitfieldManipulate which is greater than or equal to the data "
"type size of 32b in use");
"Attempted to use a source bit position value of 32 in "
"bitfieldManipulate which is greater than or equal to the data "
"type size of 32b in use");

// uint64
EXPECT_EQ(bitfieldManipulate<uint64_t>(0x00000000FFFFFFFF, 0xFFFFFFFF00000000,
Expand Down Expand Up @@ -148,9 +148,9 @@ TEST(AArch64AuxiliaryFunctionTest, BitfieldManipulate) {
"Attempted to use a rotate amount of 64 in bitfieldManipulate which is "
"greater than or equal to the data type size of 64b in use");
ASSERT_DEATH({ bitfieldManipulate<uint64_t>(0, 0, 0, 64, false); },
"Attempted to use a source bit position value of 64 in "
"bitfieldManipulate which is greater than or equal to the data "
"type size of 64b in use");
"Attempted to use a source bit position value of 64 in "
"bitfieldManipulate which is greater than or equal to the data "
"type size of 64b in use");
}

/** `conditionHolds` Tests */
Expand Down

0 comments on commit 4e9cffc

Please sign in to comment.