Skip to content

Commit cc02e83

Browse files
committed
Mark false negatives as skipped for now
1 parent 5e48a9f commit cc02e83

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

graalpython/lib-graalpython/modules/hpy/test/test_hpycontextvar.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@
2121
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2222
# SOFTWARE.
2323

24+
import pytest
2425
from .support import HPyTest
2526

2627

2728
class TestContextVar(HPyTest):
29+
@pytest.mark.skip(reason="GR-40178")
2830
def test_ContextVar_basics(self):
2931
mod = self.make_module("""
3032
HPyDef_METH(create_ctxvar, "create_ctxvar", create_ctxvar_impl, HPyFunc_O)

graalpython/lib-graalpython/modules/hpy/test/test_hpyerr.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2222
# SOFTWARE.
2323

24+
import pytest
2425
from .support import HPyTest, SUPPORTS_SYS_EXECUTABLE, trampoline
2526

2627

@@ -169,6 +170,7 @@ def test_HPyErr_SetFromErrno(self):
169170

170171
assert err.value.errno == errno.EINVAL
171172

173+
@pytest.mark.skip(reason="GR-40178")
172174
def test_HPyErr_SetFromErrnoWithFilenameObjects(self):
173175
import pytest
174176
import errno
@@ -206,6 +208,7 @@ def test_HPyErr_SetFromErrnoWithFilenameObjects(self):
206208
assert err.value.filename == file1
207209
assert err.value.filename2 == file2
208210

211+
@pytest.mark.skip(reason="GR-40178")
209212
def test_HPyErr_SetFromErrnoWithFilename(self):
210213
import pytest
211214
import errno

graalpython/lib-graalpython/modules/hpy/test/test_hpyunicode.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2323
# SOFTWARE.
2424

25+
import pytest
2526
from .support import HPyTest
2627

2728
class TestUnicode(HPyTest):
@@ -162,6 +163,7 @@ def test_AsUTF8AndSize(self):
162163
assert mod.g(b'A'.decode('utf-8')) == ord('A')
163164
assert mod.g(b'A\0'.decode('utf-8')) == ord('A')
164165

166+
@pytest.mark.skip(reason="GR-40178")
165167
def test_DecodeLatin1(self):
166168
mod = self.make_module("""
167169
HPyDef_METH(f, "f", f_impl, HPyFunc_O)

0 commit comments

Comments
 (0)