Title: [150116] trunk/Tools
Revision
150116
Author
[email protected]
Date
2013-05-15 09:11:32 -0700 (Wed, 15 May 2013)

Log Message

Unreviewed, fixing the current test-webkitpy failure.

* Scripts/webkitpy/port/mac_unittest.py:
(test_setup_environ_for_server): Adjusting the expected DYLD_INSERT_LIBRARIES environment variable value
in webkitpy.port.mac_unittest.test_setup_environ_for_server after r150089.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (150115 => 150116)


--- trunk/Tools/ChangeLog	2013-05-15 16:03:13 UTC (rev 150115)
+++ trunk/Tools/ChangeLog	2013-05-15 16:11:32 UTC (rev 150116)
@@ -1,3 +1,11 @@
+2013-05-15  Zan Dobersek  <[email protected]>
+
+        Unreviewed, fixing the current test-webkitpy failure.
+
+        * Scripts/webkitpy/port/mac_unittest.py:
+        (test_setup_environ_for_server): Adjusting the expected DYLD_INSERT_LIBRARIES environment variable value
+        in webkitpy.port.mac_unittest.test_setup_environ_for_server after r150089.
+
 2013-05-14  Jaehun Lim  <[email protected]>
 
         Fix build after r150090.

Modified: trunk/Tools/Scripts/webkitpy/port/mac_unittest.py (150115 => 150116)


--- trunk/Tools/Scripts/webkitpy/port/mac_unittest.py	2013-05-15 16:03:13 UTC (rev 150115)
+++ trunk/Tools/Scripts/webkitpy/port/mac_unittest.py	2013-05-15 16:11:32 UTC (rev 150116)
@@ -116,7 +116,7 @@
         port = self.make_port(options=MockOptions(leaks=True, guard_malloc=True))
         env = port.setup_environ_for_server(port.driver_name())
         self.assertEqual(env['MallocStackLogging'], '1')
-        self.assertEqual(env['DYLD_INSERT_LIBRARIES'], '/usr/lib/libgmalloc.dylib')
+        self.assertEqual(env['DYLD_INSERT_LIBRARIES'], '/usr/lib/libgmalloc.dylib:/mock-build/libWebCoreTestShim.dylib')
 
     def _assert_search_path(self, port_name, baseline_path, search_paths, use_webkit2=False):
         port = self.make_port(port_name=port_name, options=MockOptions(webkit_test_runner=use_webkit2))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to