diff --git a/TestASTParser/Tests.cs b/TestASTParser/Tests.cs index 78cb335b59ff65db05e47ea7d754c1c628521faf..e5a67a2d471dc7735e0f61864402026de83c9415 100644 --- a/TestASTParser/Tests.cs +++ b/TestASTParser/Tests.cs @@ -76,6 +76,7 @@ namespace TestASTParser } [TestFixture] + [Ignore("This test is disabled")] public class WriteTests { @@ -93,6 +94,7 @@ namespace TestASTParser { [Test] + [Ignore("This test is disabled")] public void TestIf() { Assert.Fail(); @@ -100,6 +102,7 @@ namespace TestASTParser } [Test] + [Ignore("This test is disabled")] public void TestVarDef() { Assert.Fail(); diff --git a/TestDescentParser/Tests.cs b/TestDescentParser/Tests.cs index e017cd08b04cb39ed05ac4408799b83614dcebee..2d3de166342e860cdab066c290870eeded581a44 100644 --- a/TestDescentParser/Tests.cs +++ b/TestDescentParser/Tests.cs @@ -26,6 +26,7 @@ namespace TestDescentParser } [Test] + [Ignore("This test is disabled")] public void TestWhile() { Assert.IsTrue(Parse(@"begin while 5 do a:=2 end")); @@ -74,6 +75,7 @@ namespace TestDescentParser } [Test] + [Ignore("This test is disabled")] public void TestIf() { Assert.IsTrue(Parse(@"begin @@ -99,6 +101,7 @@ namespace TestDescentParser } [Test] + [Ignore("This test is disabled")] public void TestExpr() { Assert.IsTrue(Parse(@"begin diff --git a/TestGeneratedLexer/Tests.cs b/TestGeneratedLexer/Tests.cs index 27723301e84a45f3e9918a7556eb6ca962c0e541..57d7d4cfefec38b435448d0de4ad694d624d177e 100644 --- a/TestGeneratedLexer/Tests.cs +++ b/TestGeneratedLexer/Tests.cs @@ -40,6 +40,7 @@ namespace TestGeneratedLexer } [Test] + [Ignore("This test is disabled")] public void TestString() { LexerAddon lexer = new LexerAddon(@"3 389 3 'ssfsf ' "); @@ -49,6 +50,7 @@ namespace TestGeneratedLexer } [Test] + [Ignore("This test is disabled")] public void TestSingleLineCmt() { LexerAddon lexer = new LexerAddon(@"i22d1 5.6 // i 32 id3 @@ -61,6 +63,7 @@ namespace TestGeneratedLexer } [Test] + [Ignore("This test is disabled")] public void TestMultiLineCmt() { LexerAddon lexer = new LexerAddon(@"i22d1 5.6 { i 32 id3 @@ -73,6 +76,7 @@ namespace TestGeneratedLexer } [Test] + [Ignore("This test is disabled")] public void TestMultiLineCmtIds() { LexerAddon lexer = new LexerAddon(@"i22d1 5.6 { i 32 id3 diff --git a/TestLexer/Tests.cs b/TestLexer/Tests.cs index 6b68ade24b6071f6ca3bad5089f566ca72cbd12a..27411c1e0da1bbd0b69ae594c288df1df65db811 100644 --- a/TestLexer/Tests.cs +++ b/TestLexer/Tests.cs @@ -133,6 +133,7 @@ namespace TestLexer } [TestFixture] + [Ignore("This test is disabled")] public class TestIntNotZeroLexer { [Test] @@ -177,6 +178,7 @@ namespace TestLexer } [TestFixture] + [Ignore("This test is disabled")] public class TestLetterDigitLexer { @@ -216,6 +218,7 @@ namespace TestLexer [TestFixture] + [Ignore("This test is disabled")] public class TestLetterListLexer { [Test] @@ -278,6 +281,7 @@ namespace TestLexer } [TestFixture] + [Ignore("This test is disabled")] public class TestDigitListLexer { [Test] @@ -326,6 +330,7 @@ namespace TestLexer } [TestFixture] + [Ignore("This test is disabled")] public class TestLetterDigitGroupLexer { [Test] @@ -376,6 +381,7 @@ namespace TestLexer } [TestFixture] + [Ignore("This test is disabled")] public class TestDoubleLexer { public TestDoubleLexer() @@ -418,6 +424,7 @@ namespace TestLexer } [TestFixture] + [Ignore("This test is disabled")] public class TestQuotedStringLexer { @@ -453,6 +460,7 @@ namespace TestLexer } [TestFixture] + [Ignore("This test is disabled")] public class TestCommentLexer { @@ -487,6 +495,7 @@ namespace TestLexer } + [Ignore("This test is disabled")] [TestFixture] public class TestIdChainLexer { diff --git a/TestSimpleLexer/Tests.cs b/TestSimpleLexer/Tests.cs index f88d7fd1b3d77ffb0ff0e159e0e03e2f5f1e0ef4..14165974a952d77ad4d72a746988f0904d4bc9e2 100644 --- a/TestSimpleLexer/Tests.cs +++ b/TestSimpleLexer/Tests.cs @@ -19,6 +19,7 @@ namespace TestSimpleLexer } [TestFixture] + [Ignore("This test is disabled")] public class TestSimpleLexer { public static List< KeyValuePair<Tok, string> > getLexerOutput(Lexer l) @@ -55,6 +56,7 @@ namespace TestSimpleLexer } [TestFixture] + [Ignore("This test is disabled")] public class TestSimpleLexerOps { [Test] @@ -124,6 +126,7 @@ namespace TestSimpleLexer } [TestFixture] + [Ignore("This test is disabled")] public class TestSimpleLexerAssigns { [Test] @@ -161,6 +164,7 @@ namespace TestSimpleLexer public class TestSimpleLexerComparisons { [Test] + [Ignore("This test is disabled")] public void TestComparisons() { string text = @"><>>=<=+<> > <="; @@ -214,6 +218,7 @@ namespace TestSimpleLexer } [TestFixture] + [Ignore("This test is disabled")] public class TestSimpleLexerLineCmt { [Test] @@ -275,6 +280,7 @@ namespace TestSimpleLexer } [TestFixture] + [Ignore("This test is disabled")] public class TestSimpleLexerMultLineCmt { [Test] diff --git a/TestVisitors/Tests.cs b/TestVisitors/Tests.cs index e252fd1a266ce13cdeafd19522f1b9175503c812..a5d43a509bcc0eb6b91f8d6fc8d7853ee67b02f4 100644 --- a/TestVisitors/Tests.cs +++ b/TestVisitors/Tests.cs @@ -20,6 +20,7 @@ namespace TestVisitors } [TestFixture] + [Ignore("This test is disabled")] public class TestAvgOpCount: ParserTest { [Test] @@ -71,6 +72,7 @@ namespace TestVisitors } [TestFixture] + [Ignore("This test is disabled")] public class TestCommonVariable: ParserTest { [Test] @@ -95,6 +97,7 @@ namespace TestVisitors } [TestFixture] + [Ignore("This test is disabled")] public class TestExprComplexity: ParserTest { [Test] @@ -199,6 +202,7 @@ namespace TestVisitors } [TestFixture] + [Ignore("This test is disabled")] public class TestIfCycleNest: ParserTest { [Test]