mirror of
https://github.com/google/flatbuffers.git
synced 2026-07-01 17:23:57 +00:00
Fixed test that was incompatible with 64bit offsets.
Change-Id: I35984d0ab3e849bec6cdaa364a39f66f2c37b4d0 Tested: on Linux.
This commit is contained in:
@@ -505,7 +505,8 @@ void ScientificTest() {
|
|||||||
auto root = flatbuffers::GetRoot<float>(parser.builder_.GetBufferPointer());
|
auto root = flatbuffers::GetRoot<float>(parser.builder_.GetBufferPointer());
|
||||||
// root will point to the table, which is a 32bit vtable offset followed
|
// root will point to the table, which is a 32bit vtable offset followed
|
||||||
// by a float:
|
// by a float:
|
||||||
TEST_EQ(fabs(root[1] - 3.14159) < 0.001, true);
|
TEST_EQ(sizeof(flatbuffers::soffset_t) == 4 && // Test assumes 32bit offsets
|
||||||
|
fabs(root[1] - 3.14159) < 0.001, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
void EnumStringsTest() {
|
void EnumStringsTest() {
|
||||||
|
|||||||
Reference in New Issue
Block a user