mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-22 18:59:59 +08:00
Fix types used in Hash() function used in tests. (#640)
Using `auto` seems to create a different output on different platforms. Notably it was observed that aarch64 compiles return a different value. Fix the type of the characters iterated through the string. Fixes #639 Signed-off-by: Henner Zeller <h.zeller@acm.org>
This commit is contained in:
parent
a3f51ecf22
commit
ac10603fdb
@ -14,7 +14,7 @@ namespace ftxui {
|
|||||||
namespace {
|
namespace {
|
||||||
uint32_t Hash(const std::string s) {
|
uint32_t Hash(const std::string s) {
|
||||||
uint32_t hash = 0;
|
uint32_t hash = 0;
|
||||||
for (auto c : s) {
|
for (uint8_t c : s) {
|
||||||
hash += c;
|
hash += c;
|
||||||
hash *= 7;
|
hash *= 7;
|
||||||
}
|
}
|
||||||
@ -37,7 +37,7 @@ TEST(CanvasTest, GoldPoint) {
|
|||||||
});
|
});
|
||||||
Screen screen(30, 10);
|
Screen screen(30, 10);
|
||||||
Render(screen, element);
|
Render(screen, element);
|
||||||
EXPECT_EQ(Hash(screen.ToString()), 2143518726);
|
EXPECT_EQ(Hash(screen.ToString()), 2085952774U) << screen.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(CanvasTest, GoldPointColor) {
|
TEST(CanvasTest, GoldPointColor) {
|
||||||
@ -52,7 +52,7 @@ TEST(CanvasTest, GoldPointColor) {
|
|||||||
});
|
});
|
||||||
Screen screen(30, 10);
|
Screen screen(30, 10);
|
||||||
Render(screen, element);
|
Render(screen, element);
|
||||||
EXPECT_EQ(Hash(screen.ToString()), 1264423298);
|
EXPECT_EQ(Hash(screen.ToString()), 2295070594U) << screen.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(CanvasTest, GoldBlock) {
|
TEST(CanvasTest, GoldBlock) {
|
||||||
@ -70,7 +70,7 @@ TEST(CanvasTest, GoldBlock) {
|
|||||||
});
|
});
|
||||||
Screen screen(30, 10);
|
Screen screen(30, 10);
|
||||||
Render(screen, element);
|
Render(screen, element);
|
||||||
EXPECT_EQ(Hash(screen.ToString()), 3826174883);
|
EXPECT_EQ(Hash(screen.ToString()), 2625314979U) << screen.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(CanvasTest, GoldBlockColor) {
|
TEST(CanvasTest, GoldBlockColor) {
|
||||||
@ -85,7 +85,7 @@ TEST(CanvasTest, GoldBlockColor) {
|
|||||||
});
|
});
|
||||||
Screen screen(30, 10);
|
Screen screen(30, 10);
|
||||||
Render(screen, element);
|
Render(screen, element);
|
||||||
EXPECT_EQ(Hash(screen.ToString()), 3048712696);
|
EXPECT_EQ(Hash(screen.ToString()), 8392696U) << screen.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(CanvasTest, GoldText) {
|
TEST(CanvasTest, GoldText) {
|
||||||
|
Loading…
Reference in New Issue
Block a user