[ctypes-commit] ctypes/ctypes/test test_loading.py,1.1.2.4,1.1.2.5
Brought to you by:
theller
From: Hye-Shik C. <pe...@us...> - 2006-02-02 01:37:50
|
Update of /cvsroot/ctypes/ctypes/ctypes/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15681/ctypes/test Modified Files: Tag: branch_1_0 test_loading.py Log Message: Fix test on FreeBSD. FreeBSD N has libc.so.N. Index: test_loading.py =================================================================== RCS file: /cvsroot/ctypes/ctypes/ctypes/test/Attic/test_loading.py,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -C2 -d -r1.1.2.4 -r1.1.2.5 *** test_loading.py 26 Jan 2006 19:59:45 -0000 1.1.2.4 --- test_loading.py 2 Feb 2006 01:37:39 -0000 1.1.2.5 *************** *** 14,17 **** --- 14,19 ---- elif sys.platform == "darwin": name = "libc.dylib" + elif sys.platform.startswith("freebsd"): + name = "libc.so" else: name = "libc.so.6" |