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 d454419 commit dda0d4eCopy full SHA for dda0d4e
src/coreclr/scripts/superpmi.py
@@ -1207,6 +1207,9 @@ def map_rsp_argument(line):
1207
if line.startswith("--exportsfile:"):
1208
arg_path = os.path.join(test_native_directory, os.path.basename(line[len("--exportsfile:"):]))
1209
return f"--exportsfile:{arg_path}"
1210
+ elif line.startswith("--sourcelink:"):
1211
+ arg_path = os.path.join(test_native_directory, os.path.basename(line[len("--sourcelink:"):]))
1212
+ return f"--sourcelink:{arg_path}"
1213
elif line.startswith("--descriptor:"):
1214
arg_path = os.path.join(test_directory, os.path.basename(line[len("--descriptor:"):]))
1215
return f"--descriptor:{arg_path}"
0 commit comments