This repository was archived by the owner on Jul 6, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
tests/Java.Interop-Tests/Java.Interop Expand file tree Collapse file tree 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
402403public class JniValueMarshaler_NullableBoolean_ContractTests : JniValueMarshalerContractTests < bool ? > {
403404protected override bool ? Value { get { return true ; } }
404405}
405406
406407[ TestFixture ]
408+ [ Category ( "LLVMIgnore" ) ] //FIXME: https://github.com/dotnet/runtime/issues/89190
407409public class JniValueMarshaler_NullableSByte_ContractTests : JniValueMarshalerContractTests < sbyte ? > {
408410protected override sbyte ? Value { get { return ( sbyte ) 2 ; } }
409411}
410412
411413[ TestFixture ]
414+ [ Category ( "LLVMIgnore" ) ] //FIXME: https://github.com/dotnet/runtime/issues/89190
412415public class JniValueMarshaler_NullableChar_ContractTests : JniValueMarshalerContractTests < char ? > {
413416protected override char ? Value { get { return '3' ; } }
414417}
415418
416419[ TestFixture ]
420+ [ Category ( "LLVMIgnore" ) ] //FIXME: https://github.com/dotnet/runtime/issues/89190
417421public class JniValueMarshaler_NullableInt16_ContractTests : JniValueMarshalerContractTests < short ? > {
418422protected override short ? Value { get { return ( short ) 4 ; } }
419423}
You can’t perform that action at this time.
0 commit comments