Skip to content

Commit

Permalink
windows ignore euc-kr tests
Browse files Browse the repository at this point in the history
  • Loading branch information
itboy87 committed Aug 6, 2024
1 parent 7c02151 commit 090af69
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package com.fleeksoft.ksoup.ported
import com.fleeksoft.ksoup.Platform
import com.fleeksoft.ksoup.isApple
import com.fleeksoft.ksoup.isJS
import com.fleeksoft.ksoup.isWindows
import korlibs.io.lang.Charset
import korlibs.io.lang.toByteArray
import korlibs.io.stream.openSync
Expand Down Expand Up @@ -42,7 +43,7 @@ class AsyncStreamTest {

@Test
fun testSpecialCharsBufferReader() {
if (Platform.isJS() || Platform.isApple()) {
if (Platform.isJS() || Platform.isApple() || Platform.isWindows()) {
// FIXME: euc-kr charset not supported
return
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package com.fleeksoft.ksoup.ported
import com.fleeksoft.ksoup.Platform
import com.fleeksoft.ksoup.isApple
import com.fleeksoft.ksoup.isJS
import com.fleeksoft.ksoup.isWindows
import korlibs.io.lang.Charset
import korlibs.io.lang.toByteArray
import korlibs.io.stream.openSync
Expand Down Expand Up @@ -46,7 +47,7 @@ class BufferReaderTest {

@Test
fun testSpecialCharsBufferReader() {
if (Platform.isJS() || Platform.isApple()) {
if (Platform.isJS() || Platform.isApple() || Platform.isWindows()) {
// FIXME: euc-kr charset not supported
return
}
Expand Down

0 comments on commit 090af69

Please sign in to comment.