Commit 828ed69d authored by Simon Giesecke's avatar Simon Giesecke

Problem: test_decrease_when_full test case in test_sockopt_hwm does not run reliably under Windows

Solution: disable test case for the moment and mark it as FIXME
parent 36d265ee
......@@ -200,7 +200,12 @@ int main ()
UNITY_BEGIN ();
RUN_TEST (test_change_before_connected);
RUN_TEST (test_change_after_connected);
// TODO FIXME this test cases does not run reliably under Windows (at
// least for some VC++ and OS versions), this must be analyzed and fixed
#if !defined(_WIN32)
RUN_TEST (test_decrease_when_full);
#endif
return UNITY_END ();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment