Paul Vriens wrote:
Jacek Caban wrote:
Hi Paul,
Paul Vriens wrote:
Changelog
Fix 2 test failures on IE8
-ok(disp == (void*)0xdeadbeef, "disp=%p\n", disp);
+ok(disp == (void*)0xdeadbeef ||
+ disp == NULL, /* IE8 */
This test does no longer make sense. It would be
Jacek Caban wrote:
Hi Paul,
Paul Vriens wrote:
Changelog
Fix 2 test failures on IE8
-ok(disp == (void*)0xdeadbeef, "disp=%p\n", disp);
+ok(disp == (void*)0xdeadbeef ||
+ disp == NULL, /* IE8 */
This test does no longer make sense. It would be better to remove it
Hi Paul,
Paul Vriens wrote:
Changelog
Fix 2 test failures on IE8
-ok(disp == (void*)0xdeadbeef, "disp=%p\n", disp);
+ok(disp == (void*)0xdeadbeef ||
+ disp == NULL, /* IE8 */
This test does no longer make sense. It would be better to remove it and
preferably chan