Several typos in comments and messages.

This commit is contained in:
Alexander Gorshenev
2017-10-20 15:52:25 +03:00
committed by alexander-gorshenev
parent 500492930b
commit 3c5602017f
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1245,7 +1245,7 @@ task link_default_libs(type: RunStandaloneKonanTest) {
task link_testLib_explicitly(type: RunKonanTest) { task link_testLib_explicitly(type: RunKonanTest) {
dependsOn ':klib:installTestLibrary' dependsOn ':klib:installTestLibrary'
goldValue = "This is a side effect of a test library linked into the binary.\nYou should not be seing this.\n\nHello\n" goldValue = "This is a side effect of a test library linked into the binary.\nYou should not be seeing this.\n\nHello\n"
source = "link/omit/hello.kt" source = "link/omit/hello.kt"
// We force library inclusion, so need to see the warning banner. // We force library inclusion, so need to see the warning banner.
flags = ['-l', 'testLibrary'] flags = ['-l', 'testLibrary']
+2 -2
View File
@@ -27,8 +27,8 @@ dependencies {
def dist = rootProject.file('dist').absolutePath def dist = rootProject.file('dist').absolutePath
// TODO: Ideally we want to write just konanArtifacts{} clouse here, // TODO: Ideally we want to write just konanArtifacts{} clause here,
// but we need to make Kotlin Native Gradle Plugin a dependence // but we need to make Kotlin/Native Gradle Plugin a dependence
// of our buildScripts first. // of our buildScripts first.
task compileKonanTestLibrary(type: Exec) { task compileKonanTestLibrary(type: Exec) {
dependsOn ':dist' dependsOn ':dist'
@@ -2,7 +2,7 @@ package test.konan.platform
fun produceMessage() { fun produceMessage() {
println("""This is a side effect of a test library linked into the binary. println("""This is a side effect of a test library linked into the binary.
You should not be seing this. You should not be seeing this.
""") """)
} }