File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
tests/Java.Interop-Tests/Java.Interop Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -399,21 +399,25 @@ public class JniValueMarshaler_Double_ContractTests : JniValueMarshaler_BuiltinT
399399 }
400400
401401 [ TestFixture ]
402+ [ Category ( "LLVMIgnore" ) ] //FIXME: https://github.com/dotnet/runtime/issues/89190
402403 public class JniValueMarshaler_NullableBoolean_ContractTests : JniValueMarshalerContractTests < bool ? > {
403404 protected override bool ? Value { get { return true ; } }
404405 }
405406
406407 [ TestFixture ]
408+ [ Category ( "LLVMIgnore" ) ] //FIXME: https://github.com/dotnet/runtime/issues/89190
407409 public class JniValueMarshaler_NullableSByte_ContractTests : JniValueMarshalerContractTests < sbyte ? > {
408410 protected override sbyte ? Value { get { return ( sbyte ) 2 ; } }
409411 }
410412
411413 [ TestFixture ]
414+ [ Category ( "LLVMIgnore" ) ] //FIXME: https://github.com/dotnet/runtime/issues/89190
412415 public class JniValueMarshaler_NullableChar_ContractTests : JniValueMarshalerContractTests < char ? > {
413416 protected override char ? Value { get { return '3' ; } }
414417 }
415418
416419 [ TestFixture ]
420+ [ Category ( "LLVMIgnore" ) ] //FIXME: https://github.com/dotnet/runtime/issues/89190
417421 public class JniValueMarshaler_NullableInt16_ContractTests : JniValueMarshalerContractTests < short ? > {
418422 protected override short ? Value { get { return ( short ) 4 ; } }
419423 }
You can’t perform that action at this time.
0 commit comments