summaryrefslogtreecommitdiff
path: root/test/cmark.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/cmark.py')
-rw-r--r--test/cmark.py17
1 files changed, 10 insertions, 7 deletions
diff --git a/test/cmark.py b/test/cmark.py
index 1110860..787c310 100644
--- a/test/cmark.py
+++ b/test/cmark.py
@@ -24,15 +24,18 @@ class CMark:
else:
sysname = platform.system()
if sysname == 'Darwin':
- libname = "libcmark.dylib"
+ libnames = [ "libcmark.dylib" ]
elif sysname == 'Windows':
- libname = "cmark.dll"
+ libnames = [ "cmark.dll", "libcmark.dll" ]
else:
- libname = "libcmark.so"
- if library_dir:
- libpath = os.path.join(library_dir, libname)
- else:
- libpath = os.path.join("build", "src", libname)
+ libnames = [ "libcmark.so" ]
+ if not library_dir:
+ library_dir = os.path.join("build", "src")
+ for libname in libnames:
+ candidate = os.path.join(library_dir, libname)
+ if os.path.isfile(candidate):
+ libpath = candidate
+ break
cmark = CDLL(libpath)
markdown = cmark.cmark_markdown_to_html
markdown.restype = c_char_p