Test for consolidate_slashes() too.

This commit is contained in:
Emil Mikulic 2006-12-13 08:17:56 +00:00
parent d7707a9216
commit dc63087421

View File

@ -46,6 +46,8 @@ static char * const tests[] = {
"/abc/../def/.././../", NULL,
"/a/b/c/../../d/", "/a/d/",
"/a/b/../../../c", NULL,
/* don't forget consolidate_slashes */
"//a///b////c/////", "/a/b/c/",
NULL
};