Bug #630804 - make check failure in business module

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@21618 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Geert Janssens 2011-11-21 14:19:10 +00:00
parent 3179225cb2
commit bcc284b0f7
6 changed files with 6 additions and 6 deletions

View File

@ -95,5 +95,5 @@ main (int argc, char **argv)
print_test_results();
}
qof_close();
return 0;
return get_rv();
}

View File

@ -134,5 +134,5 @@ int
main (int argc, char **argv)
{
// scm_boot_guile (argc, argv, main_helper, NULL);
return 0;
return get_rv();
}

View File

@ -226,5 +226,5 @@ main (int argc, char **argv)
test_customer();
print_test_results();
qof_close ();
return 0;
return get_rv();
}

View File

@ -243,5 +243,5 @@ main (int argc, char **argv)
test_employee();
print_test_results();
qof_close();
return 0;
return get_rv();
}

View File

@ -263,6 +263,6 @@ main (int argc, char **argv)
test_job();
print_test_results();
qof_close();
return 0;
return get_rv();
}

View File

@ -245,5 +245,5 @@ main (int argc, char **argv)
test_vendor();
print_test_results();
qof_close();
return 0;
return get_rv();
}