blob: 4db5e37f4a33229efc191738cd4b0497a391259d [file]
@file:OptIn(kotlin.experimental.ExperimentalNativeApi::class)
import kotlin.native.Platform
import kotlin.test.*
fun main(args: Array<String>) {
// Remove path and extension (.kexe or .exe)
val programFileName = Platform.programName!!.substringAfterLast("/").substringAfterLast("\\").substringBeforeLast(".")
assertEquals("standalone_entryPoint_programName", programFileName)
}