We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf3b426 commit 3e4e003Copy full SHA for 3e4e003
tests/test_common.py
@@ -46,6 +46,21 @@ def test_mono_debug(example_netstandard):
46
47
run_tests(asm)
48
49
+def test_mono_signal_chaining(example_netstandard):
50
+ from clr_loader import get_mono
51
+
52
+ mono = get_mono(set_signal_chaining=True)
53
+ asm = mono.get_assembly(example_netstandard / "example.dll")
54
55
+ run_tests(asm)
56
57
+def test_mono_set_dir(example_netstandard):
58
59
60
+ mono = get_mono(assembly_dir="/usr/lib", config_dir="/etc")
61
62
63
64
65
def test_coreclr(example_netcore):
66
from clr_loader import get_coreclr
0 commit comments