Skip to content

Commit 357bb8b

Browse files
test: use ASCII-only bit-pack vector names for Windows ctest
1 parent a05cf47 commit 357bb8b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_encoding_vectors.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ TEST_CASE("Bit-pack 8 values [0..7] at bw=3 known pattern", "[encoding][rle][vec
126126
}
127127
}
128128

129-
TEST_CASE("Bit-pack alternating at bw=1 0x55", "[encoding][rle][vectors]") {
129+
TEST_CASE("Bit-pack alternating at bw=1 to 0x55", "[encoding][rle][vectors]") {
130130
// [1,0,1,0,1,0,1,0] at bw=1 = 0x55 (01010101 binary)
131131
uint64_t values[8] = {1, 0, 1, 0, 1, 0, 1, 0};
132132
std::vector<uint8_t> packed;
@@ -136,7 +136,7 @@ TEST_CASE("Bit-pack alternating at bw=1 → 0x55", "[encoding][rle][vectors]") {
136136
REQUIRE(packed[0] == 0x55);
137137
}
138138

139-
TEST_CASE("Bit-pack all-ones at bw=1 0xFF", "[encoding][rle][vectors]") {
139+
TEST_CASE("Bit-pack all-ones at bw=1 to 0xFF", "[encoding][rle][vectors]") {
140140
uint64_t values[8] = {1, 1, 1, 1, 1, 1, 1, 1};
141141
std::vector<uint8_t> packed;
142142
bit_pack_8(packed, values, 1);

0 commit comments

Comments
 (0)