Changeset 160480 in webkit


Ignore:
Timestamp:
Dec 12, 2013 1:12:40 AM (10 years ago)
Author:
Carlos Garcia Campos
Message:

[GTK] Make sure unit tests don't use GVFS and dconf
https://bugs.webkit.org/show_bug.cgi?id=125620

Reviewed by Martin Robinson.

They should use the local vfs and the gsettings memory backend.

  • UIProcess/API/gtk/tests/TestMain.cpp:

(main):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r160476 r160480  
     12013-12-12  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Make sure unit tests don't use GVFS and dconf
     4        https://bugs.webkit.org/show_bug.cgi?id=125620
     5
     6        Reviewed by Martin Robinson.
     7
     8        They should use the local vfs and the gsettings memory backend.
     9
     10        * UIProcess/API/gtk/tests/TestMain.cpp:
     11        (main):
     12
    1132013-12-11  KyungTae Kim  <ktf.kim@samsung.com>
    214
  • trunk/Source/WebKit2/UIProcess/API/gtk/tests/TestMain.cpp

    r153327 r160480  
    5959    g_setenv("WEBKIT_INJECTED_BUNDLE_PATH", WEBKIT_INJECTED_BUNDLE_PATH, FALSE);
    6060    g_setenv("LC_ALL", "C", TRUE);
     61    g_setenv("GIO_USE_VFS", "local", TRUE);
     62    g_setenv("GSETTINGS_BACKEND", "memory", TRUE);
    6163    g_test_bug_base("https://bugs.webkit.org/");
    6264
Note: See TracChangeset for help on using the changeset viewer.