Disable configuration-dependent keymap tests for now

These need to be made independent of the xkb configuration somehow.
As things are now, they will either fail when run on a naked X
server in make check, or fail when run in my session.
This commit is contained in:
Matthias Clasen 2012-04-30 07:32:33 -04:00
parent 18db64749f
commit b310ba29d0

View File

@ -192,8 +192,10 @@ main (int argc, char **argv)
gtk_test_init (&argc, &argv);
g_test_add_func ("/keyhash/basic", test_basic);
#if 0
/* FIXME: need to make these independent of xkb configuration */
g_test_add_func ("/keyhash/match", test_match);
g_test_add_func ("/keyhash/virtual", test_virtual);
#endif
return g_test_run();
}