Skip to content

Commit c2339b1

Browse files
authored
Merge pull request github#11050 from igfoo/igfoo/compiler_arguments
Kotlin: Run compiler_arguments test on all platforms
2 parents 285ff54 + caa56c9 commit c2339b1

File tree

6 files changed

+2
-2
lines changed

6 files changed

+2
-2
lines changed

java/ql/integration-tests/posix-only/kotlin/compiler_arguments/compArgs.ql renamed to java/ql/integration-tests/all-platforms/kotlin/compiler_arguments/compArgs.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ private string getArgument(Compilation c, int i) {
1212
}
1313

1414
from Compilation c, int i
15-
select i, getArgument(c, i)
15+
select i, getArgument(c, i).replaceAll("\\", "/")

java/ql/integration-tests/posix-only/kotlin/compiler_arguments/test.py renamed to java/ql/integration-tests/all-platforms/kotlin/compiler_arguments/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
run_codeql_database_create(
44
["gradle build --no-daemon --no-build-cache"], lang="java")
5-
runSuccessfully(["gradle", "clean"])
5+
runSuccessfully([get_cmd("gradle"), "clean"])

0 commit comments

Comments
 (0)