aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ephy-embed-single-test.c
Commit message (Collapse)AuthorAgeFilesLines
* ephy-shell: remove the ephy_shell globalDiego Escalante Urrelo2012-12-111-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=683614
* e-embed-shell: remove the embed_shell globalDiego Escalante Urrelo2012-12-111-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=683614
* Fix a ton of 'warning: function declaration isn’t a prototype'Xan Lopez2012-11-051-3/+3
| | | | | | | | | New warning flags have been added to gnome-common recently, and we were getting this a lot. Turns out in C 'foo ()' is not the same than 'foo (void)'; the first just means that no information is given about the number of arguments, the second means the function has exactly zero arguments, so add the 'void' thing all over the place when needed.
* Run all tests in test modeXan Lopez2012-10-081-1/+1
| | | | That's what it's for!
* Ensure private profile dirs actually do exist.Xan Lopez2012-05-081-1/+3
| | | | | Perhaps PRIVATE_PROFILE should implicitly add ENSURE_EXISTS, seems logical. Do this for new.
* Allow for more fine-grained file helpers initXan Lopez2012-05-081-1/+1
| | | | | | | | | | Since we are about to migrate our profile dir, allow file helpers init to not ensure the profile dir exists (it was hardcoded until now). For this we get rid of the ugly boolean parameters and add a flags parameter, which preserves the old behaviors and allows for this new option. We update all the callers in the tree.
* Move a few EphyShell methods to ephy-private.hXan Lopez2012-04-141-0/+1
| | | | These are clearly not meant to be used outside of Epiphany.
* tests: use EPHY_EMBED_SHELL_MODE_PRIVATE not FALSEDiego Escalante Urrelo2012-04-111-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673684
* ephy-embed-single-test: unref the created EphyShellDiego Escalante Urrelo2012-04-111-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673273
* ephy-embed-single: remove network statusXan Lopez2012-03-141-17/+0
| | | | We are not using it. Easy enough to bring it back if needed.
* tests: sync vim/emacs modeline commentsDiego Escalante Urrelo2012-02-111-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=669766
* tests: rename files to avoid duplicate namesDiego Escalante Urrelo2012-02-111-0/+123
Append -test to .c files in tests/ to avoid duplicating filenames in the repository. https://bugzilla.gnome.org/show_bug.cgi?id=669766