Commit 52614c62 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

All filenames containing a ":" are invalid on Win9x and 2000 but are

valid on NT4 -> remove these tests.
parent 4f380479
......@@ -792,14 +792,6 @@ static void test_PathNameA(CHAR *curdir, CHAR curDrive, CHAR otherDrive)
sprintf(tmpstr,"Long File %c",funny_chars[i]);
test_FunnyChars(curdir,tmpstr,valid,0,tmpstr1);
}
/* ':' is a special case and is allowed only in certain cases */
test_FunnyChars(curdir,"file:000.ext",1,0,"check-1");
test_FunnyChars(curdir,"file000.e:t" ,1,0,"check-2");
test_FunnyChars(curdir,":file000.ext",0,1,"check-3");
test_FunnyChars(curdir,"file000:.ext",1,0,"check-4");
test_FunnyChars(curdir,"Long : File" ,1,0,"check-5");
test_FunnyChars(curdir,": Long File" ,0,0,"check-6");
test_FunnyChars(curdir,"Long File :" ,0,0,"check-7");
}
static void test_GetTempPathA(char* tmp_dir)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment