Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
d20a5f61
Kaydet (Commit)
d20a5f61
authored
Şub 26, 2011
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #9931: Fix hangs in GUI tests under Windows in certain conditions.
Patch by Hirokazu Yamamoto.
üst
8ed41a8e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
0 deletions
+37
-0
support.py
Lib/test/support.py
+34
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/support.py
Dosyayı görüntüle @
d20a5f61
...
...
@@ -233,6 +233,36 @@ def forget(modname):
unlink
(
imp
.
cache_from_source
(
source
,
debug_override
=
True
))
unlink
(
imp
.
cache_from_source
(
source
,
debug_override
=
False
))
# On some platforms, should not run gui test even if it is allowed
# in `use_resources'.
if
sys
.
platform
.
startswith
(
'win'
):
import
ctypes
import
ctypes.wintypes
def
_is_gui_available
():
UOI_FLAGS
=
1
WSF_VISIBLE
=
0x0001
class
USEROBJECTFLAGS
(
ctypes
.
Structure
):
_fields_
=
[(
"fInherit"
,
ctypes
.
wintypes
.
BOOL
),
(
"fReserved"
,
ctypes
.
wintypes
.
BOOL
),
(
"dwFlags"
,
ctypes
.
wintypes
.
DWORD
)]
dll
=
ctypes
.
windll
.
user32
h
=
dll
.
GetProcessWindowStation
()
if
not
h
:
raise
ctypes
.
WinError
()
uof
=
USEROBJECTFLAGS
()
needed
=
ctypes
.
wintypes
.
DWORD
()
res
=
dll
.
GetUserObjectInformationW
(
h
,
UOI_FLAGS
,
ctypes
.
byref
(
uof
),
ctypes
.
sizeof
(
uof
),
ctypes
.
byref
(
needed
))
if
not
res
:
raise
ctypes
.
WinError
()
return
bool
(
uof
.
dwFlags
&
WSF_VISIBLE
)
else
:
def
_is_gui_available
():
return
True
def
is_resource_enabled
(
resource
):
"""Test whether a resource is enabled. Known resources are set by
regrtest.py."""
...
...
@@ -245,6 +275,8 @@ def requires(resource, msg=None):
possibility of False being returned occurs when regrtest.py is
executing.
"""
if
resource
==
'gui'
and
not
_is_gui_available
():
raise
unittest
.
SkipTest
(
"Cannot use the 'gui' resource"
)
# see if the caller's module is __main__ - if so, treat as if
# the resource was set
if
sys
.
_getframe
(
1
)
.
f_globals
.
get
(
"__name__"
)
==
"__main__"
:
...
...
@@ -1045,6 +1077,8 @@ def _id(obj):
return
obj
def
requires_resource
(
resource
):
if
resource
==
'gui'
and
not
_is_gui_available
():
return
unittest
.
skip
(
"resource 'gui' is not available"
)
if
is_resource_enabled
(
resource
):
return
_id
else
:
...
...
Misc/NEWS
Dosyayı görüntüle @
d20a5f61
...
...
@@ -105,6 +105,9 @@ Build
Tests
-----
- Issue #9931: Fix hangs in GUI tests under Windows in certain conditions.
Patch by Hirokazu Yamamoto.
- Issue #10512: Properly close sockets under test.test_cgi.
- Issue #10992: Make tests pass under coverage.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment