[tests] Disable bug-10127.exe runtime test on Windows x64 (#32222)
authormonojenkins <jo.shields+jenkins@xamarin.com>
Thu, 13 Feb 2020 12:50:05 +0000 (07:50 -0500)
committerGitHub <noreply@github.com>
Thu, 13 Feb 2020 12:50:05 +0000 (13:50 +0100)
It hangs: https://github.com/mono/mono/issues/18827

Co-authored-by: Alexander Köplinger <alex.koeplinger@outlook.com>
src/mono/configure.ac
src/mono/mono/tests/Makefile.am

index 4461600..9ca1493 100644 (file)
@@ -1208,6 +1208,7 @@ if test x$enable_monotouch = xyes; then
 fi
 
 AC_ARG_ENABLE(cxx, [  --enable-cxx   compile some code as C++])
+AM_CONDITIONAL(ENABLE_CXX, test x$enable_cxx = xyes)
 
 # mono/corefx/native has a lot of invalid C++98 in its headers
 # dotnet/corefx/native looks a lot better, i.e. 44e5bdafb8d989a220c9cf1b94f31a64a6e4f052
index c82067c..d11c452 100755 (executable)
@@ -1108,6 +1108,12 @@ PLATFORM_DISABLED_TESTS += bug-58782-plain-throw.exe bug-58782-capture-and-throw
 
 # see https://github.com/mono/mono/issues/9739
 PLATFORM_DISABLED_TESTS += verbose.exe
+
+if ENABLE_CXX
+# see https://github.com/mono/mono/issues/18827
+PLATFORM_DISABLED_TESTS += bug-10127.exe
+endif
+
 endif