]> spindle.queued.net Git - midori/commitdiff
Ignore form history database errors in unit test
authorChristian Dywan <christian@twotoasts.de>
Thu, 17 Nov 2011 23:52:35 +0000 (00:52 +0100)
committerChristian Dywan <christian@twotoasts.de>
Thu, 17 Nov 2011 23:54:32 +0000 (00:54 +0100)
extensions/formhistory.c

index 76b39c34cf451c6ea2fde28fa91e831871440dff..8b20aa13a8ad253c778810fff374a303670b0214 100644 (file)
@@ -412,7 +412,9 @@ formhistory_activate_cb (MidoriExtension* extension,
     filename = g_build_filename (config_dir, "forms.db", NULL);
     if (sqlite3_open (filename, &db) != SQLITE_OK)
     {
-        g_warning (_("Failed to open database: %s\n"), sqlite3_errmsg (db));
+        /* If the folder is /, this is a test run, thus no error */
+        if (!g_str_equal (midori_extension_get_config_dir (extension), "/"))
+            g_warning (_("Failed to open database: %s\n"), sqlite3_errmsg (db));
         sqlite3_close (db);
     }
     g_free (filename);