From 2b5376cbc1da8c83e2fe8392e9cdde52daca59f0 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 25 Sep 2007 11:38:31 +0200 Subject: [PATCH] ole32/tests: Remove test that tries to create a huge file on Windows. --- dlls/ole32/tests/storage32.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/dlls/ole32/tests/storage32.c b/dlls/ole32/tests/storage32.c index e6c3542453..2349addcad 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");