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

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jbevain@gmail.com>2010-05-26 14:44:04 +0400
committerJb Evain <jbevain@gmail.com>2010-05-26 14:44:04 +0400
commit23e6566f5abaf7aa25925e32090100816760e352 (patch)
tree1b02313d78772ac1ae53236f960899cde1832e86 /linker/Tests
parentecd5f708783d0258187f7fc73f761b0b29523a3c (diff)
fix tests
svn path=/trunk/mcs/; revision=157949
Diffstat (limited to 'linker/Tests')
-rw-r--r--linker/Tests/Mono.Linker.Tests/AbstractLinkingTestFixture.cs2
-rw-r--r--linker/Tests/Mono.Linker.Tests/AbstractTestFixture.cs1
2 files changed, 1 insertions, 2 deletions
diff --git a/linker/Tests/Mono.Linker.Tests/AbstractLinkingTestFixture.cs b/linker/Tests/Mono.Linker.Tests/AbstractLinkingTestFixture.cs
index 5746ca03a..58dc1a551 100644
--- a/linker/Tests/Mono.Linker.Tests/AbstractLinkingTestFixture.cs
+++ b/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/linker/Tests/Mono.Linker.Tests/AbstractTestFixture.cs b/linker/Tests/Mono.Linker.Tests/AbstractTestFixture.cs
index e1ea1edcf..f4ac2d5a3 100644
--- a/linker/Tests/Mono.Linker.Tests/AbstractTestFixture.cs
+++ b/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;