Home - Summaries: (main) : (py3.11) : Everything - Nightly builds - Benchmarks - RPython - Builders - About

translator/sandbox/test/test_sandlib.py::test_fstat

def test_fstat():
        def compare(a, b, i):
            if a != b:
                print "stat and fstat differ @%d: %s != %s" % (i, a, b)
    
        def entry_point(argv):
            try:
                # Open a file, and compare stat and fstat
                fd = os.open('/hi.txt', os.O_RDONLY, 0777)
                st = os.stat('/hi.txt')
                fs = os.fstat(fd)
                # RPython requires the index for stat to be a constant.. :(
                compare(st[0], fs[0], 0)
                compare(st[1], fs[1], 1)
                compare(st[2], fs[2], 2)
                compare(st[3], fs[3], 3)
                compare(st[4], fs[4], 4)
                compare(st[5], fs[5], 5)
                compare(st[6], fs[6], 6)
                compare(st[7], fs[7], 7)
                compare(st[8], fs[8], 8)
                compare(st[9], fs[9], 9)
            except OSError as e:
                print "OSError: %s" % (e.errno,)
            print "All ok!"
            return 0
        exe = compile(entry_point)
    
        proc = SandboxedProcWithFiles([exe])
>       output, error = proc.communicate("")

translator\sandbox\test\test_sandlib.py:218: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
translator\sandbox\sandlib.py:307: in communicate
    self.handle_forever()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <rpython.translator.sandbox.test.test_sandlib.SandboxedProcWithFiles object at 0x000001b2547da9c0>

    def handle_forever(self):
        returncode = self.handle_until_return()
        if returncode != 0:
            raise OSError("the sandboxed subprocess exited with code %d" % (
>               returncode,))
E           OSError: the sandboxed subprocess exited with code 3221226505

translator\sandbox\sandlib.py:220: OSError
builder: rpython-win-x86-64 build #404
test: translator/sandbox/test/test_sandlib/py/test_fstat