forked from Gnucash/gnucash
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'private-kvp' into master again
This was done by branching right before the original merge and redoing a clean merge of the private-kvp branch again. This result was then cherry-picked onto master with git cherry-pick <merge-commit> -m 1 It was done like this because git merge would consider the private-kvp branch already merged even after a revert (see git-revert man page) and won't allow to merge a second time on the same branch. Resolved conflicts: README.dependencies src/app-utils/gnc-sx-instance-model.c src/engine/cap-gains.c src/engine/test/Makefile.am src/gnome/assistant-hierarchy.c src/import-export/import-match-map.c src/import-export/import-utilities.c src/import-export/ofx/gnc-ofx-kvp.c src/libqof/qof/qofbook.cpp src/libqof/qof/qofinstance-p.h src/libqof/qof/qofinstance.cpp src/libqof/qof/test/test-kvp_frame.c src/report/report-gnome/gnc-plugin-page-report.c
- Loading branch information
Showing
117 changed files
with
4,090 additions
and
2,294 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/******************************************************************** | ||
* test-app-utils.c: GLib g_test test execution file. * | ||
* Copyright 2013 John Ralls <[email protected]> * | ||
* * | ||
* 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 2 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, contact: * | ||
* * | ||
* Free Software Foundation Voice: +1-617-542-5942 * | ||
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 * | ||
* Boston, MA 02110-1301, USA [email protected] * | ||
\********************************************************************/ | ||
|
||
#include <config.h> | ||
#include <glib.h> | ||
#include <qof.h> | ||
#include <libguile.h> | ||
#include <gnc-module.h> | ||
|
||
extern void test_suite_option_util (void); | ||
|
||
static void | ||
guile_main (void *closure, int argc, char **argv) | ||
{ | ||
GNCModule mod; | ||
int retval; | ||
gnc_module_system_init (); | ||
mod = gnc_module_load ("gnucash/app-utils", 0); | ||
|
||
test_suite_option_util (); | ||
retval = g_test_run (); | ||
|
||
exit (retval); | ||
} | ||
|
||
int | ||
main (int argc, char *argv[]) | ||
{ | ||
qof_init (); /* Initialize the GObject system */ | ||
qof_log_init_filename_special ("stderr"); /* Init the log system */ | ||
g_test_init (&argc, &argv, NULL); /* initialize test program */ | ||
//qof_log_set_level("gnc", G_LOG_LEVEL_DEBUG); | ||
g_test_bug_base("https://bugzilla.gnome.org/show_bug.cgi?id="); /* init the bugzilla URL */ | ||
g_setenv ("GNC_UNINSTALLED", "1", TRUE); | ||
scm_boot_guile (argc, argv, guile_main, NULL); | ||
|
||
} |
Oops, something went wrong.