Only check kotlinc arguments on Linux

This commit is contained in:
Erik C. Thauvin 2025-03-23 15:16:27 -07:00
parent dc5b81e366
commit 0990e82f04
Signed by: erik
GPG key ID: 776702A6A2DA330E
3 changed files with 12 additions and 5 deletions

View file

@ -18,6 +18,8 @@ package rife.bld.extension.kotlin;
import org.assertj.core.api.AutoCloseableSoftAssertions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledOnOs;
import org.junit.jupiter.api.condition.OS;
import java.io.File;
import java.io.IOException;
@ -199,6 +201,7 @@ class CompileOptionsTest {
}
@Test
@EnabledOnOs(OS.LINUX)
void testCheckAllParams() throws IOException {
var args = Files.readAllLines(Paths.get("src", "test", "resources", "kotlinc-args.txt"));