[glom] Tests: Fix a typo to fix make check.



commit 5b91433beea3f829ac961fda42bddef09ab49741
Author: Murray Cumming <murrayc murrayc com>
Date:   Mon Oct 18 14:58:52 2010 +0200

    Tests: Fix a typo to fix make check.
    
    * tests/test_load_python_library.cc: Fix a typo to properly load the
      correct library name.

 ChangeLog                         |    7 +++++++
 tests/test_load_python_library.cc |    4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index ce407a3..a6a3caa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-10-18  Murray Cumming  <murrayc murrayc com>>
+
+	Tests: Fix a typo to fix make check.
+
+	* tests/test_load_python_library.cc: Fix a typo to properly load the
+  correct library name.
+
 2010-10-18  Murray Cumming  <murrayc murrayc com>
 
 	Fix the build with the latest gtkmm.
diff --git a/tests/test_load_python_library.cc b/tests/test_load_python_library.cc
index a136336..48670d8 100644
--- a/tests/test_load_python_library.cc
+++ b/tests/test_load_python_library.cc
@@ -4,9 +4,9 @@
 
 int main()
 {
-  // Attempt to dynamically load the python module, 
+  // Attempt to dynamically load the python module,
   // attempting to resolve all symbols immediately:
-  const char* path = "glom/python_embed/python_module/.libs/glom_1_16.so";
+  const char* path = "glom/python_embed/python_module/.libs/glom_1.16.so";
   void* lib = dlopen(path, RTLD_NOW);
 
   if(!lib)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]