24 Aug
2009
24 Aug
'09
7:40 a.m.
From: Austin English
On Mon, Aug 24, 2009 at 7:19 AM, Ge van Geldorp<ggeldorp at vmware.com> wrote: - ok(totalEntries > 0, "at least one transport\n"); + ok(totalEntries > 0 || broken(totalEntries == 0) /* Win7 */,
Should probably be win_skip rather than broken, so that a similar failure on wine isn't ignored.
My understanding is that broken() always returns false on Wine, so this shouldn't have any effect on Wine? Ge.