Title: [208972] trunk/Tools
Revision
208972
Author
[email protected]
Date
2016-11-24 05:35:34 -0800 (Thu, 24 Nov 2016)

Log Message

Unreviewed. Fix GTK+ test /webkit2/WebKitWebContext/get-plugins after r208429.

Test plugin library was renamed as libTestNetscapePlugIn.so in r208429.

* TestWebKitAPI/Tests/WebKit2Gtk/TestWebKitWebContext.cpp:
(testWebContextGetPlugins): Update the library name.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (208971 => 208972)


--- trunk/Tools/ChangeLog	2016-11-24 12:54:00 UTC (rev 208971)
+++ trunk/Tools/ChangeLog	2016-11-24 13:35:34 UTC (rev 208972)
@@ -1,3 +1,12 @@
+2016-11-24  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix GTK+ test /webkit2/WebKitWebContext/get-plugins after r208429.
+
+        Test plugin library was renamed as libTestNetscapePlugIn.so in r208429.
+
+        * TestWebKitAPI/Tests/WebKit2Gtk/TestWebKitWebContext.cpp:
+        (testWebContextGetPlugins): Update the library name.
+
 2016-11-22  Darin Adler  <[email protected]>
 
         Make normal case fast in the input element limitString function

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKit2Gtk/TestWebKitWebContext.cpp (208971 => 208972)


--- trunk/Tools/TestWebKitAPI/Tests/WebKit2Gtk/TestWebKitWebContext.cpp	2016-11-24 12:54:00 UTC (rev 208971)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKit2Gtk/TestWebKitWebContext.cpp	2016-11-24 13:35:34 UTC (rev 208972)
@@ -175,7 +175,7 @@
 
     char normalizedPath[PATH_MAX];
     g_assert(realpath(WEBKIT_TEST_PLUGIN_DIR, normalizedPath));
-    GUniquePtr<char> pluginPath(g_build_filename(normalizedPath, "libTestNetscapePlugin.so", nullptr));
+    GUniquePtr<char> pluginPath(g_build_filename(normalizedPath, "libTestNetscapePlugIn.so", nullptr));
     g_assert_cmpstr(webkit_plugin_get_path(testPlugin.get()), ==, pluginPath.get());
     g_assert_cmpstr(webkit_plugin_get_description(testPlugin.get()), ==, "Simple Netscape® plug-in that handles test content for WebKit");
     GList* mimeInfoList = webkit_plugin_get_mime_info_list(testPlugin.get());
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to