Title: [240459] trunk/Tools
Revision
240459
Author
ross.kirsl...@sony.com
Date
2019-01-24 17:16:35 -0800 (Thu, 24 Jan 2019)

Log Message

Unreviewed fix for API test failure after r240437.

TestWTF.WTF.StringOperators apparently can't deal with another test using String::operator+. This is fine...

* TestWebKitAPI/Tests/WTF/FileSystem.cpp:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (240458 => 240459)


--- trunk/Tools/ChangeLog	2019-01-25 01:09:37 UTC (rev 240458)
+++ trunk/Tools/ChangeLog	2019-01-25 01:16:35 UTC (rev 240459)
@@ -1,3 +1,11 @@
+2019-01-24  Ross Kirsling  <ross.kirsl...@sony.com>
+
+        Unreviewed fix for API test failure after r240437.
+
+        TestWTF.WTF.StringOperators apparently can't deal with another test using String::operator+. This is fine...
+
+        * TestWebKitAPI/Tests/WTF/FileSystem.cpp:
+
 2019-01-24  Jonathan Bedard  <jbed...@apple.com>
 
         [webkitdirs] iosSimulatorApplicationsPath may not have iOS.simruntime in its path

Modified: trunk/Tools/TestWebKitAPI/Tests/WTF/FileSystem.cpp (240458 => 240459)


--- trunk/Tools/TestWebKitAPI/Tests/WTF/FileSystem.cpp	2019-01-25 01:09:37 UTC (rev 240458)
+++ trunk/Tools/TestWebKitAPI/Tests/WTF/FileSystem.cpp	2019-01-25 01:16:35 UTC (rev 240459)
@@ -49,7 +49,7 @@
         FileSystem::writeToFile(handle, FileSystemTestData, strlen(FileSystemTestData));
         FileSystem::closeFile(handle);
 
-        m_tempFileSymlinkPath = m_tempFilePath + "-symlink";
+        m_tempFileSymlinkPath = "tempTestFile-symlink";
         FileSystem::createSymbolicLink(m_tempFilePath, m_tempFileSymlinkPath);
 
         m_tempEmptyFilePath = FileSystem::openTemporaryFile("tempEmptyTestFile", handle);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to