Skip to content

Commit 0129a5d

Browse files
committed
[introspection] Ignore P/Invokes to QCall in ApiPInvokeTest.
1 parent 00120df commit 0129a5d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/introspection/ApiPInvokeTest.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,9 @@ protected void Check (Assembly a)
255255
case "System.Net.Security.Native":
256256
path = null;
257257
break;
258+
case "QCall":
259+
// These symbols are inside libcoreclr.dylib, but they're private, so dlsym won't see them.
260+
continue;
258261
}
259262

260263
var lib = Dlfcn.dlopen (path, 0);

0 commit comments

Comments
 (0)