Skip to content

Commit

Permalink
[tests] add category for tests that fail under LLVM (#1131)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpeppers committed Jul 19, 2023
1 parent 151b03e commit 62efc09
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -399,21 +399,25 @@ public class JniValueMarshaler_Double_ContractTests : JniValueMarshaler_BuiltinT
}

[TestFixture]
[Category("LLVMIgnore")] //FIXME: https://github.com/dotnet/runtime/issues/89190
public class JniValueMarshaler_NullableBoolean_ContractTests : JniValueMarshalerContractTests<bool?> {
protected override bool? Value {get {return true;}}
}

[TestFixture]
[Category("LLVMIgnore")] //FIXME: https://github.com/dotnet/runtime/issues/89190
public class JniValueMarshaler_NullableSByte_ContractTests : JniValueMarshalerContractTests<sbyte?> {
protected override sbyte? Value {get {return (sbyte) 2;}}
}

[TestFixture]
[Category("LLVMIgnore")] //FIXME: https://github.com/dotnet/runtime/issues/89190
public class JniValueMarshaler_NullableChar_ContractTests : JniValueMarshalerContractTests<char?> {
protected override char? Value {get {return '3';}}
}

[TestFixture]
[Category("LLVMIgnore")] //FIXME: https://github.com/dotnet/runtime/issues/89190
public class JniValueMarshaler_NullableInt16_ContractTests : JniValueMarshalerContractTests<short?> {
protected override short? Value {get {return (short) 4;}}
}
Expand Down

0 comments on commit 62efc09

Please sign in to comment.