* src/app-utils/test/test-print-parse-amount.c: set force_fit and

round to 0 (like they should be) so we don't hit the rounding
	  code and blow up.   Fixes #103536.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7835 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins
2003-01-15 20:31:26 +00:00
parent 24b3d95db2
commit d5eba882d3
2 changed files with 8 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
2003-01-15 Derek Atkins <derek@ihtfp.com>
* src/app-utils/test/test-print-parse-amount.c: set force_fit and
round to 0 (like they should be) so we don't hit the rounding
code and blow up. Fixes #103536.
2003-01-14 Derek Atkins <derek@ihtfp.com>
* src/engine/QueryNew.h: add QUERY_PARAM_ACTIVE

View File

@@ -40,6 +40,8 @@ test_num (gnc_numeric n)
print_info.min_decimal_places = 0;
print_info.use_locale = 1;
print_info.use_symbol = 0;
print_info.force_fit = 0;
print_info.round = 0;
for (i = 1, fraction = 10; i < 9; i++, fraction *= 10)
{