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
a8e59fee
Kaydet (Commit)
a8e59fee
authored
Ock 17, 2013
tarafından
Stefan Krah
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.3.
üst
9f1b6018
ebee49a4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
test_os.py
Lib/test/test_os.py
+6
-3
No files found.
Lib/test/test_os.py
Dosyayı görüntüle @
a8e59fee
...
...
@@ -49,6 +49,9 @@ if hasattr(sys, 'thread_info') and sys.thread_info.version:
else
:
USING_LINUXTHREADS
=
False
# Issue #14110: Some tests fail on FreeBSD if the user is in the wheel group.
HAVE_WHEEL_GROUP
=
sys
.
platform
.
startswith
(
'freebsd'
)
and
os
.
getgid
()
==
0
# Tests creating TESTFN
class
FileTests
(
unittest
.
TestCase
):
def
setUp
(
self
):
...
...
@@ -1240,7 +1243,7 @@ if sys.platform != 'win32':
if
hasattr
(
os
,
'setgid'
):
def
test_setgid
(
self
):
if
os
.
getuid
()
!=
0
:
if
os
.
getuid
()
!=
0
and
not
HAVE_WHEEL_GROUP
:
self
.
assertRaises
(
OSError
,
os
.
setgid
,
0
)
self
.
assertRaises
(
OverflowError
,
os
.
setgid
,
1
<<
32
)
...
...
@@ -1252,7 +1255,7 @@ if sys.platform != 'win32':
if
hasattr
(
os
,
'setegid'
):
def
test_setegid
(
self
):
if
os
.
getuid
()
!=
0
:
if
os
.
getuid
()
!=
0
and
not
HAVE_WHEEL_GROUP
:
self
.
assertRaises
(
OSError
,
os
.
setegid
,
0
)
self
.
assertRaises
(
OverflowError
,
os
.
setegid
,
1
<<
32
)
...
...
@@ -1272,7 +1275,7 @@ if sys.platform != 'win32':
if
hasattr
(
os
,
'setregid'
):
def
test_setregid
(
self
):
if
os
.
getuid
()
!=
0
:
if
os
.
getuid
()
!=
0
and
not
HAVE_WHEEL_GROUP
:
self
.
assertRaises
(
OSError
,
os
.
setregid
,
0
,
0
)
self
.
assertRaises
(
OverflowError
,
os
.
setregid
,
1
<<
32
,
0
)
self
.
assertRaises
(
OverflowError
,
os
.
setregid
,
0
,
1
<<
32
)
...
...
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