Skip to content
Open
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@ private static ImmutableArray<ITestInfo> DecorateWithSkipOnCoreClrConfiguration(
}
if (skippedTestModes.HasFlag(Xunit.RuntimeTestModes.TailcallStress))
{
conditions.Add($"!{ConditionClass}.IsTailcallStress");
conditions.Add($"!{ConditionClass}.IsTailCallStress");
}
if (skippedTestModes.HasFlag(Xunit.RuntimeTestModes.TieredCompilation))
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
// The .NET Foundation licenses this file to you under the MIT license.
//


namespace b12008;

using System;
using Xunit;

Expand All @@ -20,6 +23,7 @@ internal void run()
Func(ref str[0]);
}

[OuterLoop]
[Fact]
public static void TestEntryPoint()
{
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//

using Xunit;
namespace Test
namespace b40089
{
using System;

Expand All @@ -14,6 +14,7 @@ public BB Method1(float param2)
return new BB();
}

[OuterLoop]
[Fact]
public static void TestEntryPoint()
{
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//

using Xunit;
namespace Test
namespace b40138
{
using System;

Expand All @@ -16,6 +16,7 @@ BB Method3(float param2, ulong[] param3)

static bool Static1(float[] param1) { return false; }

[OuterLoop]
[Fact]
public static int TestEntryPoint()
{
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//

using Xunit;
namespace Test
namespace b46847
{
using System;

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System;
using Xunit;

namespace DefaultNamespace
namespace b02353
{
public class Bug
{
Expand Down Expand Up @@ -133,6 +133,7 @@ public class Bug
internal static readonly String[,] strArr = {{"This", " ", "a", " ", "test", " ", "of", " ", "patience", "."},
{"This", " ", "a", " ", "test", " ", "of", " ", "patience", "."}};

[OuterLoop]
[Fact]
public static void TestEntryPoint()
{
Expand Down
11 changes: 0 additions & 11 deletions src/tests/JIT/Regression/CLR-x86-EJIT/v1-m10/b02353/b02353.csproj

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
//

using Xunit;
namespace DefaultNamespace
namespace b11490
{
using System;

public class TestClass
{
[OuterLoop]
[Fact]
public static int TestEntryPoint()
{
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.


namespace b12053;

using Xunit;
public class foo
{
[OuterLoop]
[Fact]
public static int TestEntryPoint()
{
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@
// The .NET Foundation licenses this file to you under the MIT license.
//


namespace b12399;

using System;
using Xunit;

public class foo
{
static double nan = 0.0 / 0.0;
static double d = 1.1;
[OuterLoop]
[Fact]
public static int TestEntryPoint()
{
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//

using Xunit;
namespace DefaultNamespace
namespace b12624
{

using System;
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
// The .NET Foundation licenses this file to you under the MIT license.

using Xunit;
namespace DefaultNamespace
namespace b12795
{
using System;

public class NStructTun
{
[OuterLoop]
[Fact]
public static void TestEntryPoint()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
// The .NET Foundation licenses this file to you under the MIT license.
//


namespace b13569;

using System;
using Xunit;

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
// The .NET Foundation licenses this file to you under the MIT license.

using Xunit;
namespace DefaultNamespace
namespace b14066
{
public class Prob
{
[OuterLoop]
[Fact]
public static void TestEntryPoint()
{
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.


namespace b14077;

using System;
using Xunit;

public class Test
{
[OuterLoop]
[Fact]
static public int TestEntryPoint()
{
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
// The .NET Foundation licenses this file to you under the MIT license.
//


namespace b14716;

using System;
using System.Reflection;
using System.Collections;
Expand All @@ -11,6 +14,7 @@

public class Bug
{
[OuterLoop]
[Fact]
public static void TestEntryPoint()
{
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@
// The .NET Foundation licenses this file to you under the MIT license.



namespace b15203;

using System;
using Xunit;

public class BasicMath
{
[OuterLoop]
[Fact]
public static int TestEntryPoint()
{
Expand Down
Loading
Loading