aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2013-03-19 03:02:50 +0800
committerXan Lopez <xan@igalia.com>2013-03-19 03:02:50 +0800
commitc0d29768abbf6c740c243a464167df7366243590 (patch)
tree051fd6ee73f1f301ee05c89c7ca1df7c6bca9d2d
parent6d1a0db3cd7fa5c41995af67d7ae271e28710d1d (diff)
downloadgsoc2013-epiphany-c0d29768abbf6c740c243a464167df7366243590.tar
gsoc2013-epiphany-c0d29768abbf6c740c243a464167df7366243590.tar.gz
gsoc2013-epiphany-c0d29768abbf6c740c243a464167df7366243590.tar.bz2
gsoc2013-epiphany-c0d29768abbf6c740c243a464167df7366243590.tar.lz
gsoc2013-epiphany-c0d29768abbf6c740c243a464167df7366243590.tar.xz
gsoc2013-epiphany-c0d29768abbf6c740c243a464167df7366243590.tar.zst
gsoc2013-epiphany-c0d29768abbf6c740c243a464167df7366243590.zip
ephy-embed-single-test: skip form auth test in WebKit2
This is done differently for WebKit2, so this test won't work.
-rw-r--r--tests/ephy-embed-single-test.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/ephy-embed-single-test.c b/tests/ephy-embed-single-test.c
index 80a54bcfa..be6c0ca7e 100644
--- a/tests/ephy-embed-single-test.c
+++ b/tests/ephy-embed-single-test.c
@@ -52,6 +52,7 @@ test_embed_single_get_from_shell (void)
g_assert (EPHY_IS_EMBED_SINGLE (single));
}
+#ifndef HAVE_WEBKIT2
static void
test_embed_single_form_auth (void)
{
@@ -76,6 +77,7 @@ test_embed_single_form_auth (void)
g_object_unref (single);
}
+#endif
int
main (int argc, char *argv[])
@@ -99,8 +101,10 @@ main (int argc, char *argv[])
test_embed_single_new);
g_test_add_func ("/embed/ephy-embed-single/get_from_shell",
test_embed_single_get_from_shell);
+#ifndef HAVE_WEBKIT2
g_test_add_func ("/embed/ephy-embed-single/form_auth",
test_embed_single_form_auth);
+#endif
ret = g_test_run ();