summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test cases/python/4 custom target depends extmodule/blaster.py3
-rw-r--r--test cases/python3/4 custom target depends extmodule/blaster.py3
2 files changed, 6 insertions, 0 deletions
diff --git a/test cases/python/4 custom target depends extmodule/blaster.py b/test cases/python/4 custom target depends extmodule/blaster.py
index 61b11f922..65b6493df 100644
--- a/test cases/python/4 custom target depends extmodule/blaster.py
+++ b/test cases/python/4 custom target depends extmodule/blaster.py
@@ -10,6 +10,9 @@ filedir = Path(os.path.dirname(__file__)).resolve()
if list(filedir.glob('ext/*tachyon*')):
sys.path.insert(0, (filedir / 'ext').as_posix())
+if hasattr(os, 'add_dll_directory'):
+ os.add_dll_directory(filedir / 'ext' / 'lib')
+
import tachyon
parser = argparse.ArgumentParser()
diff --git a/test cases/python3/4 custom target depends extmodule/blaster.py b/test cases/python3/4 custom target depends extmodule/blaster.py
index d2c93ad03..9cce64505 100644
--- a/test cases/python3/4 custom target depends extmodule/blaster.py
+++ b/test cases/python3/4 custom target depends extmodule/blaster.py
@@ -10,6 +10,9 @@ filedir = Path(os.path.dirname(__file__)).resolve()
if list(filedir.glob('ext/*tachyon.*')):
sys.path.insert(0, (filedir / 'ext').as_posix())
+if hasattr(os, 'add_dll_directory'):
+ os.add_dll_directory(filedir / 'ext' / 'lib')
+
import tachyon
parser = argparse.ArgumentParser()