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
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2005-02-02 22:48:05 +0300
committerZoltan Varga <vargaz@gmail.com>2005-02-02 22:48:05 +0300
commit35c9f7cd4d585fbc5101c914b3591df5f7e59ed2 (patch)
treeeb9bd03cdf85bd5f7662b783ce9f7ac667b8555f /mcs
parent6af9bb43b2ea205d3af4671e50056b180986f9ba (diff)
2005-02-02 Zoltan Varga <vargaz@freemail.hu>
* GzipStreamTest.cs DeflateStreamTest.cs: Mark failing tests with [Category("NotWorking")] * ChangeLog: New file. svn path=/trunk/mcs/; revision=40004
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/System/Test/System.IO.Compression/DeflateStreamTest.cs6
-rw-r--r--mcs/class/System/Test/System.IO.Compression/GzipStreamTest.cs6
2 files changed, 12 insertions, 0 deletions
diff --git a/mcs/class/System/Test/System.IO.Compression/DeflateStreamTest.cs b/mcs/class/System/Test/System.IO.Compression/DeflateStreamTest.cs
index b8bcbbbb547..e8d19a08147 100644
--- a/mcs/class/System/Test/System.IO.Compression/DeflateStreamTest.cs
+++ b/mcs/class/System/Test/System.IO.Compression/DeflateStreamTest.cs
@@ -45,6 +45,7 @@ namespace MonoTests.System.IO.Compression
}
[Test]
+ [Category("NotWorking")] // #72143
public void CheckCompressDecompress () {
byte [] data = new byte[100000];
for (int i = 0; i < 100000; i++) {
@@ -86,6 +87,7 @@ namespace MonoTests.System.IO.Compression
[Test]
[ExpectedException (typeof (InvalidOperationException))]
+ [Category("NotWorking")] // #72143
public void CheckCompressingRead () {
byte [] dummy = new byte[20];
MemoryStream backing = new MemoryStream ();
@@ -95,6 +97,7 @@ namespace MonoTests.System.IO.Compression
[Test]
[ExpectedException (typeof (ArgumentNullException))]
+ [Category("NotWorking")] // #72143
public void CheckRangeRead () {
byte [] data = {0x11, 0x78, 0x89, 0x91, 0xbe, 0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00 };
byte [] dummy = new byte[20];
@@ -115,6 +118,7 @@ namespace MonoTests.System.IO.Compression
[Test]
[ExpectedException (typeof (ObjectDisposedException))]
+ [Category("NotWorking")] // #72143
public void CheckClosedRead () {
byte [] data = {0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00 };
byte [] dummy = new byte[20];
@@ -126,6 +130,7 @@ namespace MonoTests.System.IO.Compression
[Test]
[ExpectedException (typeof (ObjectDisposedException))]
+ [Category("NotWorking")] // #72143
public void CheckClosedFlush () {
MemoryStream backing = new MemoryStream ();
DeflateStream compressing = new DeflateStream (backing, CompressionMode.Compress);
@@ -168,6 +173,7 @@ namespace MonoTests.System.IO.Compression
}
[Test]
+ [Category("NotWorking")] // #72143
public void CheckGetCanWriteProp () {
MemoryStream backing = new MemoryStream ();
DeflateStream compressing = new DeflateStream (backing, CompressionMode.Decompress);
diff --git a/mcs/class/System/Test/System.IO.Compression/GzipStreamTest.cs b/mcs/class/System/Test/System.IO.Compression/GzipStreamTest.cs
index aa6e173e0df..438fe614de6 100644
--- a/mcs/class/System/Test/System.IO.Compression/GzipStreamTest.cs
+++ b/mcs/class/System/Test/System.IO.Compression/GzipStreamTest.cs
@@ -45,6 +45,7 @@ namespace MonoTests.System.IO.Compression
}
[Test]
+ [Category("NotWorking")] // #72143
public void CheckCompressDecompress () {
byte [] data = new byte[100000];
for (int i = 0; i < 100000; i++) {
@@ -86,6 +87,7 @@ namespace MonoTests.System.IO.Compression
[Test]
[ExpectedException (typeof (InvalidOperationException))]
+ [Category("NotWorking")] // #72143
public void CheckCompressingRead () {
byte [] dummy = new byte[20];
MemoryStream backing = new MemoryStream ();
@@ -95,6 +97,7 @@ namespace MonoTests.System.IO.Compression
[Test]
[ExpectedException (typeof (ArgumentNullException))]
+ [Category("NotWorking")] // #72143
public void CheckRangeRead () {
byte [] data = {0x1f, 0x8b, 0x08, 0x08, 0x70, 0xbb, 0x5d, 0x41, 0x00, 0x03, 0x74, 0x65, 0x73, 0x74, 0x00, 0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00, 0x16, 0x35, 0x96, 0x31, 0x06, 0x00, 0x00, 0x00 };
byte [] dummy = new byte[20];
@@ -115,6 +118,7 @@ namespace MonoTests.System.IO.Compression
[Test]
[ExpectedException (typeof (ObjectDisposedException))]
+ [Category("NotWorking")] // #72143
public void CheckClosedRead () {
byte [] data = {0x1f, 0x8b, 0x08, 0x08, 0x70, 0xbb, 0x5d, 0x41, 0x00, 0x03, 0x74, 0x65, 0x73, 0x74, 0x00, 0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00, 0x16, 0x35, 0x96, 0x31, 0x06, 0x00, 0x00, 0x00 };
byte [] dummy = new byte[20];
@@ -126,6 +130,7 @@ namespace MonoTests.System.IO.Compression
[Test]
[ExpectedException (typeof (ObjectDisposedException))]
+ [Category("NotWorking")] // #72143
public void CheckClosedFlush () {
MemoryStream backing = new MemoryStream ();
GzipStream compressing = new GzipStream (backing, CompressionMode.Compress);
@@ -168,6 +173,7 @@ namespace MonoTests.System.IO.Compression
}
[Test]
+ [Category("NotWorking")] // #72143
public void CheckGetCanWriteProp () {
MemoryStream backing = new MemoryStream ();
GzipStream compressing = new GzipStream (backing, CompressionMode.Decompress);