Skip to content

Commit 3aecce9

Browse files
authored
Merge pull request #22348 from github/redsun82-csharp-arm-assemblies-arch
C#: add linux-arm64 to standalone_dependencies assembly path normalization
2 parents b196f0c + 6966044 commit 3aecce9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • csharp/ql/integration-tests/posix/standalone_dependencies_executing_runtime

csharp/ql/integration-tests/posix/standalone_dependencies_executing_runtime/Assemblies.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import csharp
33
private string getPath(Assembly a) {
44
not a.getCompilation().getOutputAssembly() = a and
55
exists(string s | s = a.getFile().getAbsolutePath() |
6-
exists(string sub | sub = "csharp/tools/" + ["osx64", "linux64"] |
6+
exists(string sub | sub = "csharp/tools/" + ["osx64", "linux64", "linux-arm64"] |
77
result = "[...]/csharp/tools/[...]" + s.substring(s.indexOf(sub) + sub.length(), s.length())
88
)
99
or

0 commit comments

Comments
 (0)