From db386544ed7b3c941a4c163d34c95c15f38db744 Mon Sep 17 00:00:00 2001 From: Thomas Heller Date: Fri, 8 Dec 2006 20:44:19 +0000 Subject: Print the results of ctypes.util.find_library("c") and ctypes.util.find_library("m") so that we can see if it works on the buildbots. --- Lib/ctypes/test/test_loading.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Lib/ctypes/test/test_loading.py b/Lib/ctypes/test/test_loading.py index 28c83fd4..1e7870b 100644 --- a/Lib/ctypes/test/test_loading.py +++ b/Lib/ctypes/test/test_loading.py @@ -14,8 +14,9 @@ elif sys.platform == "cygwin": else: libc_name = find_library("c") -if is_resource_enabled("printing"): - print "libc_name is", libc_name +if True or is_resource_enabled("printing"): + print >> sys.stderr, "\tfind_library('c') -> ", find_library('c') + print >> sys.stderr, "\tfind_library('m') -> ", find_library('m') class LoaderTest(unittest.TestCase): -- cgit v0.12