Skip to content

Commit

Permalink
Bug #630804 - make check failure in business module
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@21618 57a11ea4-9604-0410-9ed3-97b8803252fd
  • Loading branch information
gjanssens committed Nov 21, 2011
1 parent 3179225 commit bcc284b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/engine/test/test-address.c
Expand Up @@ -95,5 +95,5 @@ main (int argc, char **argv)
print_test_results();
}
qof_close();
return 0;
return get_rv();
}
2 changes: 1 addition & 1 deletion src/engine/test/test-business.c
Expand Up @@ -134,5 +134,5 @@ int
main (int argc, char **argv)
{
// scm_boot_guile (argc, argv, main_helper, NULL);
return 0;
return get_rv();
}
2 changes: 1 addition & 1 deletion src/engine/test/test-customer.c
Expand Up @@ -226,5 +226,5 @@ main (int argc, char **argv)
test_customer();
print_test_results();
qof_close ();
return 0;
return get_rv();
}
2 changes: 1 addition & 1 deletion src/engine/test/test-employee.c
Expand Up @@ -243,5 +243,5 @@ main (int argc, char **argv)
test_employee();
print_test_results();
qof_close();
return 0;
return get_rv();
}
2 changes: 1 addition & 1 deletion src/engine/test/test-job.c
Expand Up @@ -263,6 +263,6 @@ main (int argc, char **argv)
test_job();
print_test_results();
qof_close();
return 0;
return get_rv();
}

2 changes: 1 addition & 1 deletion src/engine/test/test-vendor.c
Expand Up @@ -245,5 +245,5 @@ main (int argc, char **argv)
test_vendor();
print_test_results();
qof_close();
return 0;
return get_rv();
}

0 comments on commit bcc284b

Please sign in to comment.