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
399
399
}
400
400
401
401
[ TestFixture ]
402
+ [ Category ( "LLVMIgnore" ) ] //FIXME: https://github.com/dotnet/runtime/issues/89190
402
403
public class JniValueMarshaler_NullableBoolean_ContractTests : JniValueMarshalerContractTests < bool ? > {
403
404
protected override bool ? Value { get { return true ; } }
404
405
}
405
406
406
407
[ TestFixture ]
408
+ [ Category ( "LLVMIgnore" ) ] //FIXME: https://github.com/dotnet/runtime/issues/89190
407
409
public class JniValueMarshaler_NullableSByte_ContractTests : JniValueMarshalerContractTests < sbyte ? > {
408
410
protected override sbyte ? Value { get { return ( sbyte ) 2 ; } }
409
411
}
410
412
411
413
[ TestFixture ]
414
+ [ Category ( "LLVMIgnore" ) ] //FIXME: https://github.com/dotnet/runtime/issues/89190
412
415
public class JniValueMarshaler_NullableChar_ContractTests : JniValueMarshalerContractTests < char ? > {
413
416
protected override char ? Value { get { return '3' ; } }
414
417
}
415
418
416
419
[ TestFixture ]
420
+ [ Category ( "LLVMIgnore" ) ] //FIXME: https://github.com/dotnet/runtime/issues/89190
417
421
public class JniValueMarshaler_NullableInt16_ContractTests : JniValueMarshalerContractTests < short ? > {
418
422
protected override short ? Value { get { return ( short ) 4 ; } }
419
423
}
You can’t perform that action at this time.
0 commit comments