Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs/tools
diff options
context:
space:
mode:
authorJb Evain <jbevain@gmail.com>2010-05-26 16:24:41 +0400
committerJb Evain <jbevain@gmail.com>2010-05-26 16:24:41 +0400
commitb9da66dd7b94ccf5e983def3f4a7bd80c6d7e220 (patch)
treedc2c5c70f41fcb73b0f29b8fc17735e5131589ea /mcs/tools
parent1e07d535431144ebbb45c3fecd145974ba6a2920 (diff)
backport tests fixes
svn path=/branches/mono-2-6/mcs/; revision=157959
Diffstat (limited to 'mcs/tools')
-rw-r--r--mcs/tools/linker/Tests/Mono.Linker.Tests/AbstractLinkingTestFixture.cs2
-rw-r--r--mcs/tools/linker/Tests/Mono.Linker.Tests/AbstractTestFixture.cs1
-rw-r--r--mcs/tools/linker/Tests/Mono.Linker.Tests/IntegrationTestFixture.cs1
3 files changed, 2 insertions, 2 deletions
diff --git a/mcs/tools/linker/Tests/Mono.Linker.Tests/AbstractLinkingTestFixture.cs b/mcs/tools/linker/Tests/Mono.Linker.Tests/AbstractLinkingTestFixture.cs
index 5746ca03aac..58dc1a551a0 100644
--- a/mcs/tools/linker/Tests/Mono.Linker.Tests/AbstractLinkingTestFixture.cs
+++ b/mcs/tools/linker/Tests/Mono.Linker.Tests/AbstractLinkingTestFixture.cs
@@ -33,7 +33,6 @@ using NUnit.Framework;
namespace Mono.Linker.Tests {
- [TestFixture]
public abstract class AbstractLinkingTestFixture : AbstractTestFixture {
[SetUp]
@@ -59,6 +58,7 @@ namespace Mono.Linker.Tests {
Pipeline p = new Pipeline ();
p.AppendStep (new LoadReferencesStep ());
p.AppendStep (new BlacklistStep ());
+ p.AppendStep (new TypeMapStep ());
p.AppendStep (new MarkStep ());
p.AppendStep (new SweepStep ());
p.AppendStep (new CleanStep ());
diff --git a/mcs/tools/linker/Tests/Mono.Linker.Tests/AbstractTestFixture.cs b/mcs/tools/linker/Tests/Mono.Linker.Tests/AbstractTestFixture.cs
index e1ea1edcfc0..f4ac2d5a3f0 100644
--- a/mcs/tools/linker/Tests/Mono.Linker.Tests/AbstractTestFixture.cs
+++ b/mcs/tools/linker/Tests/Mono.Linker.Tests/AbstractTestFixture.cs
@@ -35,7 +35,6 @@ namespace Mono.Linker.Tests {
using NUnit.Framework;
- [TestFixture]
public abstract class AbstractTestFixture {
string _testCasesRoot;
diff --git a/mcs/tools/linker/Tests/Mono.Linker.Tests/IntegrationTestFixture.cs b/mcs/tools/linker/Tests/Mono.Linker.Tests/IntegrationTestFixture.cs
index 1f9474208c9..f455f6559af 100644
--- a/mcs/tools/linker/Tests/Mono.Linker.Tests/IntegrationTestFixture.cs
+++ b/mcs/tools/linker/Tests/Mono.Linker.Tests/IntegrationTestFixture.cs
@@ -69,6 +69,7 @@ namespace Mono.Linker.Tests {
Pipeline p = new Pipeline ();
p.AppendStep (new LoadReferencesStep ());
p.AppendStep (new BlacklistStep ());
+ p.AppendStep (new TypeMapStep ());
p.AppendStep (new MarkStep ());
p.AppendStep (new SweepStep ());
p.AppendStep (new CleanStep ());