We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e431470 commit 001d005Copy full SHA for 001d005
modules/rostests/apitests/crt/setjmp.c
@@ -57,8 +57,13 @@ static void TEST_setjmp_normal(void)
57
#endif /* ndef __clang__ */
58
case 3:
59
ok_int(value, 333);
60
- ok_int(finally_called, TRUE);
61
- ok_int(abnormal, TRUE);
+#ifdef _M_AMD64 // This is broken on Windows 2003 x64
+ if (_winver >= _WIN32_WINNT_VISTA)
62
+#endif
63
+ {
64
+ ok_int(finally_called, TRUE);
65
+ ok_int(abnormal, TRUE);
66
+ }
67
stage = 4;
68
#ifdef __clang__ /* avoiding clang build hung up */
69
skip("avoiding clang build crash\n");
0 commit comments