From: Zoltan Varga Date: Tue, 22 Aug 2017 18:46:48 +0000 (-0400) Subject: [runtime] Disable a test which asserts because of an abi break in recent xcode/clang... X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=mono.git;a=commitdiff_plain;h=4188f5db548006c12558fdd069daef48275ff07e [runtime] Disable a test which asserts because of an abi break in recent xcode/clang versions. Works around #58901. --- diff --git a/mono/tests/libtest.c b/mono/tests/libtest.c index 8390e86cb57..39e5c3766a8 100644 --- a/mono/tests/libtest.c +++ b/mono/tests/libtest.c @@ -1356,7 +1356,10 @@ mono_test_return_empty_struct (int a) memset (&s, 0, sizeof (s)); +#if !(defined(__i386__) && defined(__clang__)) + /* https://bugzilla.xamarin.com/show_bug.cgi?id=58901 */ g_assert (a == 42); +#endif return s; }