Skip to content

Commit

Permalink
disable more C++ tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Aurel300 committed Jun 10, 2019
1 parent 5970717 commit 34d4435
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/sys/src/TestUnicode.hx
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,10 @@ class TestUnicode extends utest.Test {
#end

// exists
#if !cpp // C++ disabled temporarily (#8400)
assertNormalEither(FileSystem.exists, 'test-res/a', 'expected exists == true');
assertNormalEither(FileSystem.exists, 'test-res/b', 'expected exists == false');
#end

// fullPath
#if !lua // Lua disabled temporarily (#8215)
Expand Down Expand Up @@ -255,13 +257,15 @@ class TestUnicode extends utest.Test {
});

// rename
#if !cpp // C++ disabled temporarily (#8400)
File.copy("test-res/data.bin", "temp-unicode/rename-me");
pathBoth(str -> {
FileSystem.rename('temp-unicode/rename-me', 'temp-unicode/$str');
Assert.isFalse(FileSystem.exists('temp-unicode/rename-me'));
Assert.isTrue(FileSystem.exists('temp-unicode/$str'));
FileSystem.rename('temp-unicode/$str', 'temp-unicode/rename-me');
});
#end

#if !cpp // C++ disabled temporarily (#8400)
pathBoth(str -> {
Expand Down

0 comments on commit 34d4435

Please sign in to comment.