aboutsummaryrefslogtreecommitdiff
path: root/testApi/src
diff options
context:
space:
mode:
Diffstat (limited to 'testApi/src')
-rw-r--r--testApi/src/main/kotlin/testApi/testRunner/TestRunner.kt5
1 files changed, 5 insertions, 0 deletions
diff --git a/testApi/src/main/kotlin/testApi/testRunner/TestRunner.kt b/testApi/src/main/kotlin/testApi/testRunner/TestRunner.kt
index 333642b1..a23c2713 100644
--- a/testApi/src/main/kotlin/testApi/testRunner/TestRunner.kt
+++ b/testApi/src/main/kotlin/testApi/testRunner/TestRunner.kt
@@ -72,6 +72,11 @@ abstract class AbstractCoreTest(
}.toSet(),
suppressedFiles = sourceSet.suppressedFiles.map { file ->
testDirPath.toFile().resolve(file)
+ }.toSet(),
+ sourceLinks = sourceSet.sourceLinks.map { link ->
+ link.copy(
+ localDirectory = testDirPath.toFile().resolve(link.localDirectory).canonicalPath
+ )
}.toSet()
)
}