Skip to content

Commit

Permalink
Try disabling tests that take a long time to run
Browse files Browse the repository at this point in the history
  • Loading branch information
blachniet committed Jan 12, 2019
1 parent c9bb69e commit f035c4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lang/csharp/src/apache/test/File/FileTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -471,11 +471,11 @@ private static void AssertNumRecordsFromPosition( IFileReader<Foo> reader, long
[TestCase(specificSchema, Codec.Type.Null, 2, 0, 1)]
[TestCase(specificSchema, Codec.Type.Null, 10, 1, 4)]
[TestCase(specificSchema, Codec.Type.Null, 200, 111, 15)]
[TestCase(specificSchema, Codec.Type.Null, 1000, 588, 998)]
// Disabled due to long runtime [TestCase(specificSchema, Codec.Type.Null, 1000, 588, 998)]
[TestCase(specificSchema, Codec.Type.Deflate, 2, 0, 1)]
[TestCase(specificSchema, Codec.Type.Deflate, 10, 1, 4)]
[TestCase(specificSchema, Codec.Type.Deflate, 200, 111, 15)]
[TestCase(specificSchema, Codec.Type.Deflate, 1000, 588, 998)]
// Disabled due to long runtime [TestCase(specificSchema, Codec.Type.Deflate, 1000, 588, 998)]
public void TestSyncAndSeekPositions(string schemaStr, Codec.Type codecType, int iterations, int firstSyncPosition, int secondSyncPosition)
{
// create and write out
Expand Down

0 comments on commit f035c4c

Please sign in to comment.