summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--configure.in1
-rw-r--r--tests/test-matrix.cc2
-rw-r--r--tests/test-user-font.cc6
4 files changed, 11 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 440a605..67c872f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2008-12-20 Jonathon Jongsma <jonathon@quotidian.org>
+ * configure.in:
+ * tests/test-matrix.cc:
+ * tests/test-user-font.cc: fix some test build issues that were causing
+ distcheck to fail
+
+2008-12-20 Jonathon Jongsma <jonathon@quotidian.org>
+
* NEWS:
* configure.in: update for release
diff --git a/configure.in b/configure.in
index 2382fa4..577ce60 100644
--- a/configure.in
+++ b/configure.in
@@ -228,7 +228,6 @@ if test x$ENABLE_TESTS = xyes ; then
#######################################################
AX_BOOST_BASE([1.33.1])
AX_BOOST_UNIT_TEST_FRAMEWORK
- AX_BOOST_TEST_EXEC_MONITOR
dnl AX_BOOST_BASE defines a --with-boost[=DIR] option that sets
dnl $ac_boost_path as a custom boost prefix, so use that if it was specified
diff --git a/tests/test-matrix.cc b/tests/test-matrix.cc
index 8e40d01..02ed4a2 100644
--- a/tests/test-matrix.cc
+++ b/tests/test-matrix.cc
@@ -99,7 +99,7 @@ void test_cast()
void test_multiply()
{
- Cairo::Matrix A = Cairo::scaled_matrix(2, 4);
+ Cairo::Matrix A = Cairo::scaling_matrix(2, 4);
Cairo::Matrix B = Cairo::translation_matrix(5.3, 1.2);
Cairo::Matrix C = A * B;
Cairo::Matrix D;
diff --git a/tests/test-user-font.cc b/tests/test-user-font.cc
index a7d9647..75ae566 100644
--- a/tests/test-user-font.cc
+++ b/tests/test-user-font.cc
@@ -274,7 +274,7 @@ void test_user_font_exception()
// abort, we should get an exception here.
Cairo::RefPtr<Cairo::ScaledFont> scaled_font;
BOOST_CHECK_THROW (scaled_font = Cairo::ScaledFont::create(font,
- Cairo::scaled_matrix(10, 10),
+ Cairo::scaling_matrix(10, 10),
Cairo::identity_matrix(),
Cairo::FontOptions()),
Cairo::logic_error);
@@ -283,7 +283,7 @@ void test_user_font_exception()
// now test when an exception is thrown in unicode_to_glyph
font = ExceptionUserFont::create(ExceptionUserFont::FLAG_UNICODE);
BOOST_CHECK_NO_THROW (scaled_font = Cairo::ScaledFont::create(font,
- Cairo::scaled_matrix(10, 10),
+ Cairo::scaling_matrix(10, 10),
Cairo::identity_matrix(),
Cairo::FontOptions()));
TestSetup setup;
@@ -300,7 +300,7 @@ void test_user_font_exception()
// now test when an exception is thrown in render_glyph
font = ExceptionUserFont::create(ExceptionUserFont::FLAG_RENDER);
BOOST_CHECK_NO_THROW (scaled_font = Cairo::ScaledFont::create(font,
- Cairo::scaled_matrix(10, 10),
+ Cairo::scaling_matrix(10, 10),
Cairo::identity_matrix(),
Cairo::FontOptions()));
// need a new setup since the old cr is now in an error state, so attemtping