1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Inkscape integration test main.
6 * Jon A. Cruz <jon@joncruz.org>
8 * Copyright (C) 2015 Authors
10 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
13 #include <gtest/gtest.h>
16 #include <giomm/init.h>
18 #include "inkgc/gc-core.h"
19 #include "util/statics.h"
21 int main(int argc
, char **argv
)
23 // setup general environment
24 #if !GLIB_CHECK_VERSION(2,36,0)
28 // If possible, unit tests shouldn't require a GUI session
29 // since this won't generally be available in auto-builders
35 ::testing::InitGoogleTest(&argc
, argv
);
36 auto ret
= RUN_ALL_TESTS();
38 Inkscape::Util::StaticsBin::get().destroy();
45 c-file-style:"stroustrup"
46 c-file-offsets:((innamespace . 0)(inline-open . 0))
51 // vim: expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :