refactor(ci): Split into scripts

This commit is contained in:
Michael Carlberg
2016-11-19 08:55:46 +01:00
parent 7dedcf6526
commit 489d429644
11 changed files with 121 additions and 80 deletions

View File

@ -75,7 +75,8 @@ int main() {
unsigned long hashB1{string_util::hash("Foo")};
unsigned long hashB2{string_util::hash("Bar")};
expect(hashA1 == hashA2);
expect(hashA1 != hashB1 != hashB2);
expect(hashA1 != hashB1);
expect(hashA1 != hashB2);
expect(hashB1 != hashB2);
};
}