Skip to content
This repository has been archived by the owner on Nov 1, 2020. It is now read-only.

Commit

Permalink
Partially enable Generics test for CppCodeGen
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin Baladurin authored and MichalStrehovsky committed Oct 29, 2018
1 parent d195caa commit 698a30e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
11 changes: 6 additions & 5 deletions tests/src/Simple/Generics/Generics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,23 @@ static int Main()
TestDelegateToCanonMethods.Run();
TestVirtualMethodUseTracking.Run();
TestSlotsInHierarchy.Run();
TestReflectionInvoke.Run();
TestDelegateVirtualMethod.Run();
TestDelegateInterfaceMethod.Run();
TestThreadStaticFieldAccess.Run();
TestConstrainedMethodCalls.Run();
TestInstantiatingUnboxingStubs.Run();
TestMDArrayAddressMethod.Run();
TestNameManglingCollisionRegression.Run();
TestSimpleGVMScenarios.Run();
TestGvmDelegates.Run();
TestGvmDependencies.Run();
TestFieldAccess.Run();
TestNativeLayoutGeneration.Run();
TestInterfaceVTableTracking.Run();
TestClassVTableTracking.Run();

#if !CODEGEN_CPP
TestReflectionInvoke.Run();
TestMDArrayAddressMethod.Run();
TestFieldAccess.Run();
TestNativeLayoutGeneration.Run();
#endif
return 100;
}

Expand Down
1 change: 0 additions & 1 deletion tests/src/Simple/Generics/no_cpp

This file was deleted.

1 change: 0 additions & 1 deletion tests/src/Simple/PInvoke/PInvoke.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
<NativeObjectExt Condition="'$(OS)' != 'Windows_NT'">.o</NativeObjectExt>
<PInvokeNativeObject>$(IntermediateOutputPath)$(OutputName)$(NativeObjectExt)</PInvokeNativeObject>
<DefineConstants>$(DefineConstants);$(OS)</DefineConstants>
<DefineConstants Condition="$(NativeCodeGen) == 'cpp'">$(DefineConstants);CODEGEN_CPP</DefineConstants>
<UseDebugCrt Condition="'$(Configuration)' == 'Debug'">true</UseDebugCrt>
</PropertyGroup>

Expand Down
1 change: 1 addition & 0 deletions tests/src/Simple/SimpleTest.targets
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<OutputPath>$(MSBuildProjectDirectory)\bin\$(Configuration)\$(Platform)\</OutputPath>
<IntermediateOutputPath>$(MSBuildProjectDirectory)\obj\$(Configuration)\$(Platform)\</IntermediateOutputPath>
<DebugType Condition="'$(DebugType)' == ''">portable</DebugType>
<DefineConstants Condition="$(NativeCodeGen) == 'cpp'">$(DefineConstants);CODEGEN_CPP</DefineConstants>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit 698a30e

Please sign in to comment.