From 852d6e612a4d7838fb0c0ecba1f0e844d83481a8 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Mon, 30 Jun 2014 18:32:10 +1000 Subject: [PATCH] tests/(floating_point|scale_clip)_test.def : Quote hex literals. Versions of autogen before 5.18.1 accepted bare hexadecimal literals but later versions need those hex literals quoted. See: https://sourceforge.net/p/autogen/bugs/162/ --- tests/floating_point_test.def | 4 ++-- tests/scale_clip_test.def | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/floating_point_test.def b/tests/floating_point_test.def index 3441d34b..e368ddf4 100644 --- a/tests/floating_point_test.def +++ b/tests/floating_point_test.def @@ -22,11 +22,11 @@ float_type = { int_type = { int_name = short ; - int_max = 0x7FFF ; + int_max = "0x7FFF" ; } ; int_type = { int_name = int ; - int_max = 0x7FFFFFFF ; + int_max = "0x7FFFFFFF" ; } ; diff --git a/tests/scale_clip_test.def b/tests/scale_clip_test.def index 34598191..9974f116 100644 --- a/tests/scale_clip_test.def +++ b/tests/scale_clip_test.def @@ -19,13 +19,13 @@ float_type = { int_type = { int_type_name = "short" ; int_short_name = "s" ; - int_max_value = 0x7FFFF ; + int_max_value = "0x7FFFF" ; } ; int_type = { int_type_name = "int" ; int_short_name = "i" ; - int_max_value = 0x7FFFFFFF ; + int_max_value = "0x7FFFFFFF" ; } ;