Alexandre Julliard : ole32/tests: Remove test that tries to create a huge file on Windows.

Alexandre Julliard julliard at winehq.org
Tue Sep 25 07:50:52 CDT 2007


Module: wine
Branch: master
Commit: 2b5376cbc1da8c83e2fe8392e9cdde52daca59f0
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=2b5376cbc1da8c83e2fe8392e9cdde52daca59f0

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Tue Sep 25 11:38:31 2007 +0200

ole32/tests: Remove test that tries to create a huge file on Windows.

---

 dlls/ole32/tests/storage32.c |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/dlls/ole32/tests/storage32.c b/dlls/ole32/tests/storage32.c
index e6c3542..2349add 100644
--- a/dlls/ole32/tests/storage32.c
+++ b/dlls/ole32/tests/storage32.c
@@ -314,9 +314,6 @@ static void test_storage_stream(void)
     ok(r==S_OK, "failed to seek stream\n");
     r = IStream_SetSize(stm,p);
     ok(r==S_OK, "failed to set pos\n");
-    p.u.HighPart = 1;
-    r = IStream_SetSize(stm,p);
-    ok(r==STG_E_INVALIDFUNCTION, "setting to invalid pos should fail with STG_E_INVALIDFUNCTION instead of error 0x%08x\n", r);
     pos.QuadPart = 10;
     r = IStream_Seek(stm, pos, STREAM_SEEK_SET, &p );
     ok(r==S_OK, "failed to seek stream\n");




More information about the wine-cvs mailing list