Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
Mesosphere Sprint 73
-
1
Description
Many tests in mesos currently have comparisons between signed and unsigned integers, eg
ASSERT_EQ(4, v1Response->read_file().size());
or comparisons between values of different enums, e.g. TaskState and v1::TaskState:
ASSERT_EQ(TASK_STARTING, startingUpdate->status().state());
Usually, the compiler would catch these and emit a warning, but these are currently silenced because gtest headers are included using the -isystem command line flag.
Attachments
Issue Links
- blocks
-
MESOS-7699 "stdlib.h: No such file or directory" when building with GCC 6 (Debian stable freshly released)
- Resolved