From ba4372911ae9c9b43a997dac1dc4ded323456ae2 Mon Sep 17 00:00:00 2001 From: jbevain Date: Wed, 26 May 2010 10:44:04 +0000 Subject: [PATCH] fix tests git-svn-id: svn+ssh://mono-cvs.ximian.com/source/trunk/mcs@157949 e3ebcda4-bce8-0310-ba0a-eca2169e7518 --- tools/linker/Tests/Mono.Linker.Tests/AbstractLinkingTestFixture.cs | 2 +- tools/linker/Tests/Mono.Linker.Tests/AbstractTestFixture.cs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/linker/Tests/Mono.Linker.Tests/AbstractLinkingTestFixture.cs b/tools/linker/Tests/Mono.Linker.Tests/AbstractLinkingTestFixture.cs index 5746ca03aa..58dc1a551a 100644 --- a/tools/linker/Tests/Mono.Linker.Tests/AbstractLinkingTestFixture.cs +++ b/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/tools/linker/Tests/Mono.Linker.Tests/AbstractTestFixture.cs b/tools/linker/Tests/Mono.Linker.Tests/AbstractTestFixture.cs index e1ea1edcfc..f4ac2d5a3f 100644 --- a/tools/linker/Tests/Mono.Linker.Tests/AbstractTestFixture.cs +++ b/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; -- 2.11.4.GIT