Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions src/tests/JIT/Methodical/stringintern/_XModuletest1-xmod.csproj

This file was deleted.

16 changes: 0 additions & 16 deletions src/tests/JIT/Methodical/stringintern/_XModuletest2-xmod.csproj

This file was deleted.

16 changes: 0 additions & 16 deletions src/tests/JIT/Methodical/stringintern/_XModuletest4-xmod.csproj

This file was deleted.

1 change: 1 addition & 0 deletions src/tests/JIT/Methodical/stringintern/test1-xassem.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
<DefineConstants>$(DefineConstants);XASSEM</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<DebugType />
Expand Down
7 changes: 6 additions & 1 deletion src/tests/JIT/Methodical/stringintern/test1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@
using System;
using System.Runtime.CompilerServices;

class Test1
class
#if XASSEM
Test1_xassem
#else
Test1
#endif
{
public static string teststr1 = "static \uC09C\u7B8B field";
public static string[] teststr2 = new string[] { "\u3F2Aarray element 0", "array element 1\uCB53", "array \u47BBelement 2" };
Expand Down
1 change: 1 addition & 0 deletions src/tests/JIT/Methodical/stringintern/test2-xassem.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
<DefineConstants>$(DefineConstants);XASSEM</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<DebugType />
Expand Down
7 changes: 6 additions & 1 deletion src/tests/JIT/Methodical/stringintern/test2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@
using System;
using System.Runtime.CompilerServices;

class Test2
class
#if XASSEM
Test2_xassem
#else
Test2
#endif
{
public static string[] teststr2 = new string[] { "\u3F2Aarray element 0", "array element 1\uCB53", "array \u47BBelement 2" };

Expand Down
1 change: 1 addition & 0 deletions src/tests/JIT/Methodical/stringintern/test4-xassem.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestPriority>1</CLRTestPriority>
<DefineConstants>$(DefineConstants);XASSEM</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<DebugType />
Expand Down
7 changes: 6 additions & 1 deletion src/tests/JIT/Methodical/stringintern/test4.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@
using System;
using System.Runtime.CompilerServices;

class Test4
class
#if XASSEM
Test4_xassem
#else
Test4
#endif
{
public static string teststr1 = null;
public static string[] teststr2 = new string[3];
Expand Down