mirror of
git://slackware.nl/current.git
synced 2024-12-29 10:25:00 +01:00
45d1307fae
d/perl-5.36.0-x86_64-3.txz: Rebuilt. Upgraded: IO-Socket-SSL-2.081, Moo-2.005005, Path-Tiny-0.144, Sub-Quote-2.006008, Template-Toolkit-3.101, URI-5.17. Added: JSON-4.10 (needed to build Samba with --bundled-libraries=heimdal). kde/kstars-3.6.3-x86_64-1.txz: Upgraded. l/gjs-1.74.1-x86_64-1.txz: Upgraded. Compiled against mozjs102-102.7.0esr. l/mozjs102-102.7.0esr-x86_64-1.txz: Added. This is required by gjs-1.74.1 and polkit-122. l/mozjs78-78.15.0esr-x86_64-1.txz: Removed. l/polkit-122-x86_64-1.txz: Upgraded. Compiled against mozjs102-102.7.0esr.
66 lines
2.1 KiB
Diff
66 lines
2.1 KiB
Diff
From 1af9fdd2124547099eb0cf5a71b513ef5592dbf9 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Franti=C5=A1ek=20Zatloukal?= <fzatlouk@redhat.com>
|
|
Date: Tue, 10 Aug 2021 00:00:50 +0200
|
|
Subject: [PATCH] Tests: Use native TemporaryDirectory
|
|
|
|
Without ugly wrapper for Py < 3.2 that doesn't work half of the times...
|
|
---
|
|
js/src/jit-test/jit_test.py | 2 +-
|
|
js/src/tests/jstests.py | 2 +-
|
|
js/src/tests/lib/tempfile.py | 17 +----------------
|
|
3 files changed, 3 insertions(+), 18 deletions(-)
|
|
|
|
diff --git a/js/src/jit-test/jit_test.py b/js/src/jit-test/jit_test.py
|
|
index f5d7794..8d443aa 100755
|
|
--- a/js/src/jit-test/jit_test.py
|
|
+++ b/js/src/jit-test/jit_test.py
|
|
@@ -38,7 +38,7 @@ from lib.tests import (
|
|
get_environment_overlay,
|
|
change_env,
|
|
)
|
|
-from lib.tempfile import TemporaryDirectory
|
|
+from tempfile import TemporaryDirectory
|
|
|
|
|
|
def which(name):
|
|
diff --git a/js/src/tests/jstests.py b/js/src/tests/jstests.py
|
|
index 6fa2f5f..53ceff6 100755
|
|
--- a/js/src/tests/jstests.py
|
|
+++ b/js/src/tests/jstests.py
|
|
@@ -37,7 +37,7 @@ from lib.tests import (
|
|
from lib.results import ResultsSink, TestOutput
|
|
from lib.progressbar import ProgressBar
|
|
from lib.adaptor import xdr_annotate
|
|
-from lib.tempfile import TemporaryDirectory
|
|
+from tempfile import TemporaryDirectory
|
|
|
|
if sys.platform.startswith("linux") or sys.platform.startswith("darwin"):
|
|
from lib.tasks_unix import run_all_tests
|
|
diff --git a/js/src/tests/lib/tempfile.py b/js/src/tests/lib/tempfile.py
|
|
index ecc21c9..f0a1fa3 100644
|
|
--- a/js/src/tests/lib/tempfile.py
|
|
+++ b/js/src/tests/lib/tempfile.py
|
|
@@ -2,19 +2,4 @@
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
from __future__ import absolute_import
|
|
-
|
|
-try:
|
|
- # Python 3.2
|
|
- from tempfile import TemporaryDirectory
|
|
-except ImportError:
|
|
- import tempfile
|
|
- import shutil
|
|
- from contextlib import contextmanager
|
|
-
|
|
- @contextmanager
|
|
- def TemporaryDirectory(*args, **kwds):
|
|
- d = tempfile.mkdtemp(*args, **kwds)
|
|
- try:
|
|
- yield d
|
|
- finally:
|
|
- shutil.rmtree(d)
|
|
+from tempfile import TemporaryDirectory
|
|
--
|
|
2.31.1
|
|
|