diff --git a/tests/Java.Interop-Tests/Java.Interop/JniValueMarshalerContractTests.cs b/tests/Java.Interop-Tests/Java.Interop/JniValueMarshalerContractTests.cs index 08e878688..633611fea 100644 --- a/tests/Java.Interop-Tests/Java.Interop/JniValueMarshalerContractTests.cs +++ b/tests/Java.Interop-Tests/Java.Interop/JniValueMarshalerContractTests.cs @@ -399,21 +399,25 @@ public class JniValueMarshaler_Double_ContractTests : JniValueMarshaler_BuiltinT } [TestFixture] + [Category("LLVMIgnore")] //FIXME: https://github.com/dotnet/runtime/issues/89190 public class JniValueMarshaler_NullableBoolean_ContractTests : JniValueMarshalerContractTests { protected override bool? Value {get {return true;}} } [TestFixture] + [Category("LLVMIgnore")] //FIXME: https://github.com/dotnet/runtime/issues/89190 public class JniValueMarshaler_NullableSByte_ContractTests : JniValueMarshalerContractTests { protected override sbyte? Value {get {return (sbyte) 2;}} } [TestFixture] + [Category("LLVMIgnore")] //FIXME: https://github.com/dotnet/runtime/issues/89190 public class JniValueMarshaler_NullableChar_ContractTests : JniValueMarshalerContractTests { protected override char? Value {get {return '3';}} } [TestFixture] + [Category("LLVMIgnore")] //FIXME: https://github.com/dotnet/runtime/issues/89190 public class JniValueMarshaler_NullableInt16_ContractTests : JniValueMarshalerContractTests { protected override short? Value {get {return (short) 4;}} }