diff options
author | Bruce Forstall <brucefo@microsoft.com> | 2015-09-11 16:30:43 -0700 |
---|---|---|
committer | Bruce Forstall <brucefo@microsoft.com> | 2015-09-11 16:30:43 -0700 |
commit | 2bb5c8c5cded8f6849bebf0ae5eb0c9e75ac37aa (patch) | |
tree | 90dbe33e0019f97bca98ccaa2e9450aff53227af /tests | |
parent | 0554a236ffe62e68f09969df4249a22bdf6ddc2c (diff) | |
download | coreclr-2bb5c8c5cded8f6849bebf0ae5eb0c9e75ac37aa.tar.gz coreclr-2bb5c8c5cded8f6849bebf0ae5eb0c9e75ac37aa.tar.bz2 coreclr-2bb5c8c5cded8f6849bebf0ae5eb0c9e75ac37aa.zip |
Delete two bad tests
These tests were deleted from internal runs long ago and should not have been ported.
Diffstat (limited to 'tests')
4 files changed, 0 insertions, 242 deletions
diff --git a/tests/src/JIT/Methodical/ELEMENT_TYPE_IU/i_flow_merge.il b/tests/src/JIT/Methodical/ELEMENT_TYPE_IU/i_flow_merge.il deleted file mode 100644 index e7c8b3cfd2..0000000000 --- a/tests/src/JIT/Methodical/ELEMENT_TYPE_IU/i_flow_merge.il +++ /dev/null @@ -1,77 +0,0 @@ -// Copyright (c) Microsoft. All rights reserved. -// Licensed under the MIT license. See LICENSE file in the project root for full license information. - -// -// -.assembly extern mscorlib { } -.assembly extern System.Console -{ - .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) - .ver 4:0:0:0 -} -.assembly 'test' -{ } -.class private auto ansi Test extends [mscorlib]System.Object -{ -.method private hidebysig static int32 Main() il managed -{ - .entrypoint - .maxstack 4 - .locals (int32, native int, native int) - ldc.i4.0 - dup - stloc.0 - stloc.1 - - ldc.i4 0x12345678 - stloc.2 - - ldc.i4.0 - br.s loop_begin -loop_begin: - dup - brfalse branch1 - ldloca 0 - ldstr "branch1" - call void [System.Console]System.Console::WriteLine(class [mscorlib]System.String) - br.s merge1 -branch1: - ldstr "branch2" - call void [System.Console]System.Console::WriteLine(class [mscorlib]System.String) - ldloca 1 -merge1: - ldloca 2 - ldind.i - stind.i - ldc.i4.1 - add - dup - ldc.i4.2 - ceq - brfalse.s loop_begin - pop - - ldloc.0 - ldloc.1 - add - ldloca 2 - ldind.i - sub - ldloc.2 - sub - ldc.i4 0x64 - add - ret -} // end of method 'Test::Main' - -.method public hidebysig specialname rtspecialname - instance void .ctor() il managed -{ - // Code size 7 (0x7) - .maxstack 8 - IL_0000: ldarg.0 - IL_0001: call instance void [mscorlib]System.Object::.ctor() - IL_0006: ret -} // end of method 'Test::.ctor' - -} // end of class 'Test' diff --git a/tests/src/JIT/Methodical/ELEMENT_TYPE_IU/i_flow_merge.ilproj b/tests/src/JIT/Methodical/ELEMENT_TYPE_IU/i_flow_merge.ilproj deleted file mode 100644 index 4269fc4c81..0000000000 --- a/tests/src/JIT/Methodical/ELEMENT_TYPE_IU/i_flow_merge.ilproj +++ /dev/null @@ -1,44 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" /> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <AssemblyName>$(MSBuildProjectName)</AssemblyName> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{95DFC527-4DC1-495E-97D7-E94EE1F7140D}</ProjectGuid> - <OutputType>Exe</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <FileAlignment>512</FileAlignment> - <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> - <ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages</ReferencePath> - <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir> - <NuGetPackageImportStamp>7a9bfb7d</NuGetPackageImportStamp> - </PropertyGroup> - <!-- Default configurations to help VS understand the configurations --> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - </PropertyGroup> - <ItemGroup> - <CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies"> - <Visible>False</Visible> - </CodeAnalysisDependentAssemblyPaths> - </ItemGroup> - <PropertyGroup> - <DebugType>Full</DebugType> - <Optimize>False</Optimize> - </PropertyGroup> - <ItemGroup> - <Compile Include="i_flow_merge.il" /> - </ItemGroup> - <ItemGroup> - <None Include="app.config" /> - </ItemGroup> - <ItemGroup> - <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" /> - </ItemGroup> - <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" /> - <PropertyGroup Condition=" '$(MsBuildProjectDirOverride)' != '' "> - </PropertyGroup> -</Project>
\ No newline at end of file diff --git a/tests/src/JIT/Methodical/ELEMENT_TYPE_IU/u_flow_merge.il b/tests/src/JIT/Methodical/ELEMENT_TYPE_IU/u_flow_merge.il deleted file mode 100644 index cbe409fce1..0000000000 --- a/tests/src/JIT/Methodical/ELEMENT_TYPE_IU/u_flow_merge.il +++ /dev/null @@ -1,77 +0,0 @@ -// Copyright (c) Microsoft. All rights reserved. -// Licensed under the MIT license. See LICENSE file in the project root for full license information. - -// -// -.assembly extern mscorlib { } -.assembly extern System.Console -{ - .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) - .ver 4:0:0:0 -} -.assembly 'test' -{ } -.class private auto ansi Test extends [mscorlib]System.Object -{ -.method private hidebysig static int32 Main() il managed -{ - .entrypoint - .maxstack 4 - .locals (unsigned int32, native unsigned int, native unsigned int) - ldc.i4.0 - dup - stloc.0 - stloc.1 - - ldc.i4 0x12345678 - stloc.2 - - ldc.i4.0 - br.s loop_begin -loop_begin: - dup - brfalse branch1 - ldloca 0 - ldstr "branch1" - call void [System.Console]System.Console::WriteLine(class [mscorlib]System.String) - br.s merge1 -branch1: - ldstr "branch2" - call void [System.Console]System.Console::WriteLine(class [mscorlib]System.String) - ldloca 1 -merge1: - ldloca 2 - ldind.i - stind.i4 - ldc.i4.1 - add.ovf.un - dup - ldc.i4.2 - ceq - brfalse.s loop_begin - pop - - ldloc.0 - ldloc.1 - add.ovf.un - ldloca 2 - ldind.i - sub.ovf.un - ldloc.2 - sub.ovf.un - ldc.i4 0x64 - add - ret -} // end of method 'Test::Main' - -.method public hidebysig specialname rtspecialname - instance void .ctor() il managed -{ - // Code size 7 (0x7) - .maxstack 8 - IL_0000: ldarg.0 - IL_0001: call instance void [mscorlib]System.Object::.ctor() - IL_0006: ret -} // end of method 'Test::.ctor' - -} // end of class 'Test' diff --git a/tests/src/JIT/Methodical/ELEMENT_TYPE_IU/u_flow_merge.ilproj b/tests/src/JIT/Methodical/ELEMENT_TYPE_IU/u_flow_merge.ilproj deleted file mode 100644 index b3d1bca7a9..0000000000 --- a/tests/src/JIT/Methodical/ELEMENT_TYPE_IU/u_flow_merge.ilproj +++ /dev/null @@ -1,44 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" /> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <AssemblyName>$(MSBuildProjectName)</AssemblyName> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{95DFC527-4DC1-495E-97D7-E94EE1F7140D}</ProjectGuid> - <OutputType>Exe</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <FileAlignment>512</FileAlignment> - <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> - <ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages</ReferencePath> - <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir> - <NuGetPackageImportStamp>7a9bfb7d</NuGetPackageImportStamp> - </PropertyGroup> - <!-- Default configurations to help VS understand the configurations --> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - </PropertyGroup> - <ItemGroup> - <CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies"> - <Visible>False</Visible> - </CodeAnalysisDependentAssemblyPaths> - </ItemGroup> - <PropertyGroup> - <DebugType>Full</DebugType> - <Optimize>False</Optimize> - </PropertyGroup> - <ItemGroup> - <Compile Include="u_flow_merge.il" /> - </ItemGroup> - <ItemGroup> - <None Include="app.config" /> - </ItemGroup> - <ItemGroup> - <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" /> - </ItemGroup> - <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" /> - <PropertyGroup Condition=" '$(MsBuildProjectDirOverride)' != '' "> - </PropertyGroup> -</Project>
\ No newline at end of file |