The src/test/scheduler_tests.cpp test has been disabled since v0.9.0rc2-4332-g8f0d79e, since then it's been warning about the MicroSleep() function being unused, e.g. on GCC 4.9.2-10:
test/scheduler_tests.cpp:32:13: warning: ‘void
scheduler_tests::MicroSleep(uint64_t)’ defined but not used
[-Wunused-function]
The bitcoin developers don't want this warning fixed, and are instead using it as a reminder to fix the test. Since this is a rather unorthodox use of compiler warnings add a comment about this so people who build bitcoin and notice compiler warnings don't try to submit patches for this one.
See #8003 and #7169 for past attempts to fix this warning which have been rejected.