Skip all NSURL* test cases using GSInetServerStream on Windows (#268)

* Mark all test cases using GSSocketStream as hopeful on win32

* Update ChangeLog

* Remove allow-test-failures flag
This commit is contained in:
Hugo Melder 2022-09-27 20:21:50 +02:00 committed by GitHub
parent 0f9edb188b
commit a8c421d485
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 227 additions and 8 deletions

View file

@ -101,10 +101,10 @@ int main()
str = [url path];
PASS_EQUAL(str, @"C:\\WINDOWS",
"Path of file URL C:\\WINDOWS is C:\\WINDOWS");
PASS_EQUAL([url description], @"file://localhost/C:%5CWINDOWS/",
"File URL C:\\WINDOWS is file://localhost/C:%%5CWINDOWS/");
PASS_EQUAL([url resourceSpecifier], @"//localhost/C:%5CWINDOWS/",
"resourceSpecifier of C:\\WINDOWS is //localhost/C:%%5CWINDOWS/");
PASS_EQUAL([url description], @"file:///C:%5CWINDOWS/",
"File URL C:\\WINDOWS is file:///C:%%5CWINDOWS/");
PASS_EQUAL([url resourceSpecifier], @"/C:%5CWINDOWS/",
"resourceSpecifier of C:\\WINDOWS is /C:%5CWINDOWS/");
#else
url = [NSURL fileURLWithPath: @"/usr"];
str = [url path];