|
4 | 4 | run_codeql_database_create(['dotnet run'], test_db="test-db", db=None, lang="csharp")
|
5 | 5 |
|
6 | 6 | # no arguments, but `--`
|
7 |
| -run_codeql_database_create(['dotnet clean', 'rm -rf test-db obj bin', 'dotnet run --'], test_db="test2-db", db=None, lang="csharp") |
| 7 | +run_codeql_database_create(['dotnet clean', 'rm -rf test-db', 'dotnet run --'], test_db="test2-db", db=None, lang="csharp") |
8 | 8 |
|
9 | 9 | # two arguments, no `--`
|
10 |
| -run_codeql_database_create(['dotnet clean', 'rm -rf test2-db obj bin', 'dotnet run hello world'], test_db="test3-db", db=None, lang="csharp") |
| 10 | +run_codeql_database_create(['dotnet clean', 'rm -rf test2-db', 'dotnet run hello world'], test_db="test3-db", db=None, lang="csharp") |
11 | 11 |
|
12 | 12 | # two arguments, and `--`
|
13 |
| -run_codeql_database_create(['dotnet clean', 'rm -rf test3-db obj bin', 'dotnet run -- hello world'], test_db="test4-db", db=None, lang="csharp") |
| 13 | +run_codeql_database_create(['dotnet clean', 'rm -rf test3-db', 'dotnet run -- hello world'], test_db="test4-db", db=None, lang="csharp") |
14 | 14 |
|
15 | 15 | # shared compilation enabled; tracer should override by changing the command
|
16 | 16 | # to `dotnet run -p:UseSharedCompilation=true -p:UseSharedCompilation=false -- hello world`
|
17 |
| -run_codeql_database_create(['dotnet clean', 'rm -rf test4-db obj bin', 'dotnet run -p:UseSharedCompilation=true -- hello world'], test_db="test5-db", db=None, lang="csharp") |
| 17 | +run_codeql_database_create(['dotnet clean', 'rm -rf test4-db', 'dotnet run -p:UseSharedCompilation=true -- hello world'], test_db="test5-db", db=None, lang="csharp") |
0 commit comments