Author: Matti Picus <matti.pi...@gmail.com> Branch: win32-cleanup2 Changeset: r54776:8c915f9df26c Date: 2012-04-27 15:07 +0300 http://bitbucket.org/pypy/pypy/changeset/8c915f9df26c/
Log: merge default into branch diff --git a/pypy/module/pypyjit/test_pypy_c/test_00_model.py b/pypy/module/pypyjit/test_pypy_c/test_00_model.py --- a/pypy/module/pypyjit/test_pypy_c/test_00_model.py +++ b/pypy/module/pypyjit/test_pypy_c/test_00_model.py @@ -54,7 +54,8 @@ cmdline += ['--jit', ','.join(jitcmdline)] cmdline.append(str(self.filepath)) # - env={'PYPYLOG': self.log_string + ':' + str(logfile)} + env = os.environ.copy() + env['PYPYLOG'] = self.log_string + ':' + str(logfile) pipe = subprocess.Popen(cmdline, env=env, stdout=subprocess.PIPE, diff --git a/pypy/rlib/test/test_rposix.py b/pypy/rlib/test/test_rposix.py --- a/pypy/rlib/test/test_rposix.py +++ b/pypy/rlib/test/test_rposix.py @@ -133,6 +133,8 @@ pass def test_validate_fd(self): + if os.name != 'nt': + skip('relevant for windows only') assert rposix._validate_fd(0) == 1 fid = open(str(udir.join('validate_test.txt')), 'w') fd = fid.fileno() _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit