From e42129241681dde7adae7d20697e7b421682fbb4 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 18:23:22 +0200 Subject: Adding upstream version 2.10.22. Signed-off-by: Daniel Baumann --- .../test-session-2-8-compatibility-single-window.c | 70 ++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 app/tests/test-session-2-8-compatibility-single-window.c (limited to 'app/tests/test-session-2-8-compatibility-single-window.c') diff --git a/app/tests/test-session-2-8-compatibility-single-window.c b/app/tests/test-session-2-8-compatibility-single-window.c new file mode 100644 index 0000000..c4b61b0 --- /dev/null +++ b/app/tests/test-session-2-8-compatibility-single-window.c @@ -0,0 +1,70 @@ +/* GIMP - The GNU Image Manipulation Program + * Copyright (C) 2011 Martin Nordholts + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "config.h" + +#include +#include + +#include "dialogs/dialogs-types.h" + +#include "tests.h" + +#include "gimp-test-session-utils.h" +#include "gimp-app-test-utils.h" + + +#define ADD_TEST(function) \ + g_test_add_func ("/gimp-session-2-8-compatibility-single-window/" #function, \ + function); + +#define SKIP_TEST(function) \ + g_test_add_func ("/gimp-session-2-8-compatibility-single-window/subprocess/" #function, \ + function); + +/** + * Tests that a multi-window sessionrc in GIMP 2.8 format is loaded + * and written (thus also interpreted) like we expect. + **/ +static void +read_and_write_session_files (void) +{ + gimp_test_session_load_and_write_session_files ("sessionrc-2-8-single-window", + "dockrc-2-8", + "sessionrc-expected-single-window", + "dockrc-expected", + TRUE /*single_window_mode*/); +} + +int main(int argc, char **argv) +{ + gimp_test_bail_if_no_display (); + gtk_test_init (&argc, &argv, NULL); + +#ifdef HAVE_XVFB_RUN + ADD_TEST (read_and_write_session_files); +#else + SKIP_TEST (read_and_write_session_files); +#endif + + /* Don't bother freeing stuff, the process is short-lived */ +#ifdef HAVE_XVFB_RUN + return g_test_run (); +#else + return GIMP_EXIT_TEST_SKIPPED; +#endif +} -- cgit v1.2.3