diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 13:14:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 13:14:44 +0000 |
commit | 30ff6afe596eddafacf22b1a5b2d1a3d6254ea15 (patch) | |
tree | 9b788335f92174baf7ee18f03ca8330b8c19ce2b /tests/expected/bitops/swapbytes | |
parent | Initial commit. (diff) | |
download | util-linux-upstream.tar.xz util-linux-upstream.zip |
Adding upstream version 2.36.1.upstream/2.36.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/expected/bitops/swapbytes')
-rw-r--r-- | tests/expected/bitops/swapbytes | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/expected/bitops/swapbytes b/tests/expected/bitops/swapbytes new file mode 100644 index 0000000..b9468a7 --- /dev/null +++ b/tests/expected/bitops/swapbytes @@ -0,0 +1,21 @@ +Testing swab16 +swab16(0x0001) = 0x0100 +swab16(0x1234) = 0x3412 +swab16(0xff00) = 0x00ff +swab16(0x4000) = 0x0040 +swab16(0xfeff) = 0xfffe +Testing swab32 +swab32(0x00000001) = 0x01000000 +swab32(0x80000000) = 0x00000080 +swab32(0x12345678) = 0x78563412 +swab32(0xffff0000) = 0x0000ffff +swab32(0x00ff0000) = 0x0000ff00 +swab32(0xff000000) = 0x000000ff +Testing swab64 +swab64(0x0000000000000001) = 0x0100000000000000 +swab64(0x8000000000000000) = 0x0000000000000080 +swab64(0x1234567812345678) = 0x7856341278563412 +swab64(0xffffffff00000000) = 0x00000000ffffffff +swab64(0x00ff000000000000) = 0x000000000000ff00 +swab64(0xff00000000000000) = 0x00000000000000ff +No errors found in the byteswap implementation |