Skip to content

Commit 62ad648

Browse files
authored
Merge pull request #8572 from BobosilaVictor/PUP-11025/add-big-sur
(PUP-11025) Skip failing acceptance tests for Big Sur
2 parents 6dac352 + 2ee0011 commit 62ad648

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

acceptance/tests/resource/file/ticket_8740_should_not_enumerate_root_directory.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
test_name "#8740: should not enumerate root directory"
22

33
confine :except, :platform => 'windows'
4-
confine :except, :platform => /osx-10.1[5-9]/
4+
confine :except, :platform => /(osx-10.1[5-9]|osx-11-)/
55

66
tag 'audit:high',
77
'audit:refactor', # Use block style `test_name`

acceptance/tests/resource/user/should_allow_password_salt_iterations_osx.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
test_name "should allow password, salt, and iteration attributes in OSX"
22

33
confine :to, :platform => /osx/
4+
#TODO Fix Big Sur password manager PUP-11026
5+
confine :except, :platform => /osx-11-/
46

57
tag 'audit:high',
68
'audit:refactor', # Use block style `test_run`

acceptance/tests/resource/user/should_modify_home.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
test_name "should modify the home directory of an user on OS X < 10.14" do
22
confine :to, :platform => /osx/
3-
confine :except, :platform => /osx-10.1[4-9]/
3+
confine :except, :platform => /(osx-10.1[4-9]|osx-11-)/
44

55
tag 'audit:high',
66
'audit:acceptance' # Could be done as integration tests, but would

acceptance/tests/resource/user/should_modify_uid.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
test_name "should modify the uid of an user OS X < 10.14" do
22
confine :to, :platform => /osx/
3-
confine :except, :platform => /osx-10.1[4-9]/
3+
confine :except, :platform => /(osx-10.1[4-9]|osx-11-)/
44

55
tag 'audit:high',
66
'audit:acceptance' # Could be done as integration tests, but would

0 commit comments

Comments
 (0)