mirror of
https://github.com/github/codeql.git
synced 2026-04-24 08:15:14 +02:00
Merge pull request #14172 from michaelnebel/csharp/poormansquoting
C#: Poor mans quoting.
This commit is contained in:
@@ -53,3 +53,9 @@ check_diagnostics(test_db="test7-db")
|
||||
s = run_codeql_database_create_stdout(['dotnet clean', 'rm -rf test7-db', 'dotnet build', 'dotnet run --no-build hello world'], "test8-db")
|
||||
check_build_out("hello, world", s)
|
||||
check_diagnostics(test_db="test8-db")
|
||||
|
||||
|
||||
# two arguments, no '--' (first argument quoted)
|
||||
s = run_codeql_database_create_stdout(['dotnet clean', 'rm -rf test8-db', 'dotnet run "hello world part1" part2'], "test9-db")
|
||||
check_build_out("hello world part1, part2", s)
|
||||
check_diagnostics(test_db="test9-db")
|
||||
|
||||
@@ -84,6 +84,10 @@ function RegisterExtractorPack(id)
|
||||
dotnetRunNeedsSeparator = false
|
||||
dotnetRunInjectionIndex = i
|
||||
end
|
||||
-- if we encounter a whitespace, we explicitly need to quote the argument.
|
||||
if OperatingSystem == 'windows' and arg:match('%s') then
|
||||
argv[i] = '"' .. arg .. '"'
|
||||
end
|
||||
end
|
||||
if match then
|
||||
local injections = { '-p:UseSharedCompilation=false', '-p:EmitCompilerGeneratedFiles=true' }
|
||||
|
||||
Reference in New Issue
Block a user