mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Update plugin CRCs as testing plugins have changed.
This commit is contained in:
@@ -36,7 +36,7 @@ TEST_F(GetCrc32, MissingFile) {
|
||||
}
|
||||
|
||||
TEST_F(GetCrc32, ValidFile) {
|
||||
EXPECT_EQ(0x0B5B7B90, loot::GetCrc32(dataPath / "Blank.esp"));
|
||||
EXPECT_EQ(0xE12EFAAA, loot::GetCrc32(dataPath / "Blank.esp"));
|
||||
}
|
||||
|
||||
TEST(IntToHexString, PositiveAndZeroValues) {
|
||||
|
||||
@@ -174,7 +174,7 @@ TEST_F(ConditionGrammar, ChecksumConditionTrue) {
|
||||
bool r = false;
|
||||
Grammar cg(&game, false);
|
||||
|
||||
std::string condition("checksum(\"Blank.esp\", 0B5B7B90)");
|
||||
std::string condition("checksum(\"Blank.esp\", E12EFAAA)");
|
||||
std::string::const_iterator begin = condition.begin();
|
||||
std::string::const_iterator end = condition.end();
|
||||
|
||||
|
||||
@@ -499,7 +499,7 @@ TEST_F(PluginMetadata, EvalAllConditions) {
|
||||
" - name: Relev\n"
|
||||
" condition: 'file(\"Blank.missing.esm\")'\n"
|
||||
"dirty:\n"
|
||||
" - crc: 0x0B5B7B90\n"
|
||||
" - crc: 0xE12EFAAA\n"
|
||||
" util: 'utility'\n"
|
||||
" udr: 1\n"
|
||||
" nav: 2\n"
|
||||
@@ -525,7 +525,7 @@ TEST_F(PluginMetadata, EvalAllConditions) {
|
||||
}), pm.Messages());
|
||||
EXPECT_TRUE(pm.Tags().empty());
|
||||
EXPECT_EQ(std::set<loot::PluginDirtyInfo>({
|
||||
loot::PluginDirtyInfo(0x0B5B7B90, 0, 1, 2, "utility")
|
||||
loot::PluginDirtyInfo(0xE12EFAAA, 0, 1, 2, "utility")
|
||||
}), pm.DirtyInfo());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user