Title: [105065] trunk/Tools
Revision
105065
Author
[email protected]
Date
2012-01-16 08:13:20 -0800 (Mon, 16 Jan 2012)

Log Message

[GTK] set audio resources path in NRTW
https://bugs.webkit.org/show_bug.cgi?id=76380

Reviewed by Martin Robinson.

* Scripts/webkitpy/layout_tests/port/gtk.py:
(GtkPort.setup_environ_for_server): Set $AUDIO_RESOURCES_PATH so
the uninstalled audio resources are used during webaudio tests.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (105064 => 105065)


--- trunk/Tools/ChangeLog	2012-01-16 16:08:53 UTC (rev 105064)
+++ trunk/Tools/ChangeLog	2012-01-16 16:13:20 UTC (rev 105065)
@@ -1,3 +1,14 @@
+2012-01-16  Philippe Normand  <[email protected]>
+
+        [GTK] set audio resources path in NRTW
+        https://bugs.webkit.org/show_bug.cgi?id=76380
+
+        Reviewed by Martin Robinson.
+
+        * Scripts/webkitpy/layout_tests/port/gtk.py:
+        (GtkPort.setup_environ_for_server): Set $AUDIO_RESOURCES_PATH so
+        the uninstalled audio resources are used during webaudio tests.
+
 2012-01-16  Carlos Garcia Campos  <[email protected]>
 
         [GTK] ldflags and cflags should take precedence over the existing flags in gtkdoc.py

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk.py (105064 => 105065)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk.py	2012-01-16 16:08:53 UTC (rev 105064)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk.py	2012-01-16 16:13:20 UTC (rev 105065)
@@ -94,6 +94,9 @@
         environment['TEST_RUNNER_TEST_PLUGIN_PATH'] = self._build_path('TestNetscapePlugin', '.libs')
         environment['WEBKIT_INSPECTOR_PATH'] = self._build_path('Programs', 'resources', 'inspector')
         environment['WEBKIT_TOP_LEVEL'] = self._config.webkit_base_dir()
+        environment['AUDIO_RESOURCES_PATH'] = self._filesystem.join(self._config.webkit_base_dir(),
+                                                                    'Source', 'WebCore', 'platform',
+                                                                    'audio', 'resources')
         if self.get_option('webkit_test_runner'):
             # FIXME: This is a workaround to ensure that testing with WebKitTestRunner is started with
             # a non-existing cache. This should be removed when (and if) it will be possible to properly
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to