Skip to content

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

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

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
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
}

0 commit comments

Comments
 (0)