Skip to content
This repository was archived by the owner on Jul 6, 2026. It is now read-only.

Commit 62efc09

Browse files
[tests] add category for tests that fail under LLVM (#1131)
Context: dotnet/runtime#89190 Context: dotnet/android#8176
1 parent 151b03e commit 62efc09

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

‎tests/Java.Interop-Tests/Java.Interop/JniValueMarshalerContractTests.cs‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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
publicclassJniValueMarshaler_NullableBoolean_ContractTests:JniValueMarshalerContractTests<bool?>{
403404
protectedoverridebool?Value{get{returntrue;}}
404405
}
405406

406407
[TestFixture]
408+
[Category("LLVMIgnore")]//FIXME: https://github.com/dotnet/runtime/issues/89190
407409
publicclassJniValueMarshaler_NullableSByte_ContractTests:JniValueMarshalerContractTests<sbyte?>{
408410
protectedoverridesbyte?Value{get{return(sbyte)2;}}
409411
}
410412

411413
[TestFixture]
414+
[Category("LLVMIgnore")]//FIXME: https://github.com/dotnet/runtime/issues/89190
412415
publicclassJniValueMarshaler_NullableChar_ContractTests:JniValueMarshalerContractTests<char?>{
413416
protectedoverridechar?Value{get{return'3';}}
414417
}
415418

416419
[TestFixture]
420+
[Category("LLVMIgnore")]//FIXME: https://github.com/dotnet/runtime/issues/89190
417421
publicclassJniValueMarshaler_NullableInt16_ContractTests:JniValueMarshalerContractTests<short?>{
418422
protectedoverrideshort?Value{get{return(short)4;}}
419423
}

0 commit comments

Comments
 (0)