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
e7e5039d
Kaydet (Commit)
e7e5039d
authored
Haz 07, 2019
tarafından
Paul Monson
Kaydeden (comit)
Steve Dower
Haz 07, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-37181: Fix test_regrtest failures on Windows arm64 (GH-13872)
üst
740a84de
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
test_regrtest.py
Lib/test/test_regrtest.py
+6
-2
rt.bat
PCbuild/rt.bat
+1
-0
test.bat
Tools/buildbot/test.bat
+1
-1
No files found.
Lib/test/test_regrtest.py
Dosyayı görüntüle @
e7e5039d
...
...
@@ -616,7 +616,9 @@ class ProgramsTestCase(BaseTestCase):
# Tools\buildbot\test.bat
script
=
os
.
path
.
join
(
ROOT_DIR
,
'Tools'
,
'buildbot'
,
'test.bat'
)
test_args
=
[
'--testdir=
%
s'
%
self
.
tmptestdir
]
if
platform
.
architecture
()[
0
]
==
'64bit'
:
if
platform
.
machine
()
==
'ARM64'
:
test_args
.
append
(
'-arm64'
)
# ARM 64-bit build
elif
platform
.
architecture
()[
0
]
==
'64bit'
:
test_args
.
append
(
'-x64'
)
# 64-bit build
if
not
Py_DEBUG
:
test_args
.
append
(
'+d'
)
# Release build, use python.exe
...
...
@@ -629,7 +631,9 @@ class ProgramsTestCase(BaseTestCase):
if
not
os
.
path
.
isfile
(
script
):
self
.
skipTest
(
f
'File "{script}" does not exist'
)
rt_args
=
[
"-q"
]
# Quick, don't run tests twice
if
platform
.
architecture
()[
0
]
==
'64bit'
:
if
platform
.
machine
()
==
'ARM64'
:
rt_args
.
append
(
'-arm64'
)
# ARM 64-bit build
elif
platform
.
architecture
()[
0
]
==
'64bit'
:
rt_args
.
append
(
'-x64'
)
# 64-bit build
if
Py_DEBUG
:
rt_args
.
append
(
'-d'
)
# Debug build, use python_d.exe
...
...
PCbuild/rt.bat
Dosyayı görüntüle @
e7e5039d
...
...
@@ -39,6 +39,7 @@ if "%1"=="-O" (set dashO=-O) & shift & goto CheckOpts
if "%1"=="-q" (set qmode=yes) & shift & goto CheckOpts
if "%1"=="-d" (set suffix=_d) & shift & goto CheckOpts
if "%1"=="-x64" (set prefix=%pcbuild%amd64) & shift & goto CheckOpts
if "%1"=="-arm64" (set prefix=%pcbuild%arm64) & shift & goto CheckOpts
if "%1"=="-arm32" (set prefix=%pcbuild%arm32) & shift & goto CheckOpts
if NOT "%1"=="" (set regrtestargs=%regrtestargs% %1) & shift & goto CheckOpts
...
...
Tools/buildbot/test.bat
Dosyayı görüntüle @
e7e5039d
...
...
@@ -9,6 +9,7 @@ set arm32_ssh=
:CheckOpts
if "%1"=="-x64" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
if "%1"=="-arm64" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
if "%1"=="-arm32" (set rt_opts=%rt_opts% %1) & (set arm32_ssh=true) & shift & goto CheckOpts
if "%1"=="-d" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
if "%1"=="-O" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
...
...
@@ -17,7 +18,6 @@ if "%1"=="+d" (set rt_opts=%rt_opts:-d=%) & shift & goto CheckOpts
if "%1"=="+q" (set rt_opts=%rt_opts:-q=%) & shift & goto CheckOpts
if NOT "%1"=="" (set regrtest_args=%regrtest_args% %1) & shift & goto CheckOpts
echo on
if "%arm32_ssh%"=="true" goto :Arm32Ssh
call "%here%..\..\PCbuild\rt.bat" %rt_opts% -uall -rwW --slowest --timeout=1200 --fail-env-changed %regrtest_args%
...
...
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