harley
This commit is contained in:
parent
191b76f4dd
commit
d9e8509440
|
@ -4,8 +4,16 @@
|
||||||
|
|
||||||
|
|
||||||
TEST(LuaHooks, TestCrc8) {
|
TEST(LuaHooks, TestCrc8) {
|
||||||
// Test failed sensor, returns nil
|
const char* realHDdata = R"(
|
||||||
char* crc8scripts = R"(
|
|
||||||
|
function testFunc()
|
||||||
|
return crc8_j1850({0x13, 0x57, 0x13, 0x45, 0x00, 0xe8, 0x5c }, 7)
|
||||||
|
end
|
||||||
|
|
||||||
|
)";
|
||||||
|
EXPECT_EQ(testLuaReturnsNumberOrNil(realHDdata).value_or(0), 0x86);
|
||||||
|
|
||||||
|
const char* crc8scripts = R"(
|
||||||
|
|
||||||
function testFunc()
|
function testFunc()
|
||||||
return crc8_j1850({0x31,0x32,0x32 }, 2)
|
return crc8_j1850({0x31,0x32,0x32 }, 2)
|
||||||
|
|
Loading…
Reference in New Issue