aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/ephy-session-test.c6
-rw-r--r--tests/ephy-shell-test.c5
2 files changed, 10 insertions, 1 deletions
diff --git a/tests/ephy-session-test.c b/tests/ephy-session-test.c
index f93a2766c..7cde2023a 100644
--- a/tests/ephy-session-test.c
+++ b/tests/ephy-session-test.c
@@ -181,6 +181,7 @@ test_ephy_session_clear (void)
const char *session_data_empty =
"";
+#if 0
static void
test_ephy_session_load_empty_session (void)
{
@@ -220,6 +221,7 @@ test_ephy_session_load_empty_session (void)
enable_delayed_loading ();
ephy_session_clear (session);
}
+#endif
static void
test_ephy_session_load_many_windows (void)
@@ -458,9 +460,11 @@ main (int argc, char *argv[])
g_test_add_func ("/src/ephy-session/clear",
test_ephy_session_clear);
+#if 0
+ /* FIXME: This test needs fixing. See bug #707220. */
g_test_add_func ("/src/ephy-session/load-empty-session",
test_ephy_session_load_empty_session);
-
+#endif
g_test_add_func ("/src/ephy-session/load-many-windows",
test_ephy_session_load_many_windows);
diff --git a/tests/ephy-shell-test.c b/tests/ephy-shell-test.c
index 086390ec2..8b9bac6fe 100644
--- a/tests/ephy-shell-test.c
+++ b/tests/ephy-shell-test.c
@@ -239,6 +239,7 @@ test_ephy_shell_tab_append (void)
gtk_widget_destroy (window);
}
+#if 0
static void
test_ephy_shell_tab_from_external (void)
{
@@ -313,6 +314,7 @@ test_ephy_shell_tab_from_external (void)
gtk_widget_destroy (window);
}
+#endif
static void
test_ephy_shell_tab_no_history (void)
@@ -392,8 +394,11 @@ main (int argc, char *argv[])
g_test_add_func ("/src/ephy-shell/tab_append",
test_ephy_shell_tab_append);
+#if 0
+ /* FIXME: This test is broken. See bug #707217. */
g_test_add_func ("/src/ephy-shell/tab_from_external",
test_ephy_shell_tab_from_external);
+#endif
g_test_add_func ("/src/ephy-shell/tab_no_history",
test_ephy_shell_tab_no_history);