Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions test/system/101-create.bats
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# shellcheck shell=bats
#
# Copyright © 2019 – 2024 Red Hat, Inc.
# Copyright © 2019 – 2025 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -157,7 +157,7 @@ teardown() {
assert [ ${#lines[@]} -eq 2 ]
assert [ ${#stderr_lines[@]} -eq 0 ]

run podman ps -a
run podman ps --all

assert_output --regexp "Created[[:blank:]]+arch-toolbox-latest"
}
Expand All @@ -182,7 +182,7 @@ teardown() {
assert [ ${#lines[@]} -eq 2 ]
assert [ ${#stderr_lines[@]} -eq 0 ]

run podman ps -a
run podman ps --all

assert_output --regexp "Created[[:blank:]]+arch-toolbox-latest"
}
Expand All @@ -207,7 +207,7 @@ teardown() {
assert [ ${#lines[@]} -eq 2 ]
assert [ ${#stderr_lines[@]} -eq 0 ]

run podman ps -a
run podman ps --all

assert_output --regexp "Created[[:blank:]]+arch-toolbox-latest"
}
Expand All @@ -223,7 +223,7 @@ teardown() {
assert [ ${#lines[@]} -eq 2 ]
assert [ ${#stderr_lines[@]} -eq 0 ]

run podman ps -a
run podman ps --all

assert_output --regexp "Created[[:blank:]]+fedora-toolbox-34"
}
Expand All @@ -239,7 +239,7 @@ teardown() {
assert [ ${#lines[@]} -eq 2 ]
assert [ ${#stderr_lines[@]} -eq 0 ]

run podman ps -a
run podman ps --all

assert_output --regexp "Created[[:blank:]]+rhel-toolbox-8.10"
}
Expand Down
62 changes: 31 additions & 31 deletions test/system/210-ulimit.bats
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# shellcheck shell=bats
#
# Copyright © 2023 – 2024 Red Hat, Inc.
# Copyright © 2023 – 2025 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -34,7 +34,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: real-time non-blocking time (hard)" {
@test "ulimit: Real-time non-blocking time (hard)" {
local limit
limit=$(ulimit -H -R)

Expand All @@ -49,7 +49,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: real-time non-blocking time (soft)" {
@test "ulimit: Real-time non-blocking time (soft)" {
local limit
limit=$(ulimit -S -R)

Expand All @@ -64,7 +64,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: core file size (hard)" {
@test "ulimit: Core file size (hard)" {
local limit
limit=$(ulimit -H -c)

Expand All @@ -79,7 +79,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: core file size (soft)" {
@test "ulimit: Core file size (soft)" {
local limit
limit=$(ulimit -S -c)

Expand All @@ -94,7 +94,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: data segment size (hard)" {
@test "ulimit: Data segment size (hard)" {
local limit
limit=$(ulimit -H -d)

Expand All @@ -109,7 +109,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: data segment size (soft)" {
@test "ulimit: Data segment size (soft)" {
local limit
limit=$(ulimit -S -d)

Expand All @@ -124,7 +124,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: scheduling priority (hard)" {
@test "ulimit: Scheduling priority (hard)" {
local limit
limit=$(ulimit -H -e)

Expand All @@ -139,7 +139,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: scheduling priority (soft)" {
@test "ulimit: Scheduling priority (soft)" {
local limit
limit=$(ulimit -S -e)

Expand All @@ -154,7 +154,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: file size (hard)" {
@test "ulimit: File size (hard)" {
local limit
limit=$(ulimit -H -f)

Expand All @@ -169,7 +169,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: file size (soft)" {
@test "ulimit: File size (soft)" {
local limit
limit=$(ulimit -S -f)

Expand All @@ -184,7 +184,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: number of pending signals (hard)" {
@test "ulimit: Number of pending signals (hard)" {
local limit
limit=$(ulimit -H -i)

Expand All @@ -199,7 +199,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: number of pending signals (soft)" {
@test "ulimit: Number of pending signals (soft)" {
local limit
limit=$(ulimit -S -i)

Expand All @@ -214,7 +214,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: locked memory size (hard)" {
@test "ulimit: Locked memory size (hard)" {
local limit
limit=$(ulimit -H -l)

Expand All @@ -229,7 +229,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: locked memory size (soft)" {
@test "ulimit: Locked memory size (soft)" {
local limit
limit=$(ulimit -S -l)

Expand All @@ -244,7 +244,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: resident memory size (hard)" {
@test "ulimit: Resident memory size (hard)" {
local limit
limit=$(ulimit -H -m)

Expand All @@ -259,7 +259,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: resident memory size (soft)" {
@test "ulimit: Resident memory size (soft)" {
local limit
limit=$(ulimit -S -m)

Expand All @@ -274,7 +274,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: number of open files (hard)" {
@test "ulimit: Number of open files (hard)" {
local limit
limit=$(ulimit -H -n)

Expand All @@ -289,7 +289,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: number of open files (soft)" {
@test "ulimit: Number of open files (soft)" {
local limit
limit=$(ulimit -H -n)

Expand All @@ -304,7 +304,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: pipe size (hard)" {
@test "ulimit: Pipe size (hard)" {
local limit
limit=$(ulimit -H -p)

Expand All @@ -319,7 +319,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: pipe size (soft)" {
@test "ulimit: Pipe size (soft)" {
local limit
limit=$(ulimit -S -p)

Expand Down Expand Up @@ -364,7 +364,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: real-time scheduling priority (hard)" {
@test "ulimit: Real-time scheduling priority (hard)" {
local limit
limit=$(ulimit -H -r)

Expand All @@ -379,7 +379,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: real-time scheduling priority (soft)" {
@test "ulimit: Real-time scheduling priority (soft)" {
local limit
limit=$(ulimit -S -r)

Expand All @@ -394,7 +394,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: stack size (hard)" {
@test "ulimit: Stack size (hard)" {
local limit
limit=$(ulimit -H -s)

Expand All @@ -409,7 +409,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: stack size (soft)" {
@test "ulimit: Stack size (soft)" {
local limit
limit=$(ulimit -S -s)

Expand Down Expand Up @@ -454,7 +454,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: number of user processes (hard)" {
@test "ulimit: Number of user processes (hard)" {
local limit
limit=$(ulimit -H -u)

Expand All @@ -469,7 +469,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: number of user processes (soft)" {
@test "ulimit: Number of user processes (soft)" {
local limit
limit=$(ulimit -S -u)

Expand All @@ -484,7 +484,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: virtual memory size (hard)" {
@test "ulimit: Virtual memory size (hard)" {
local limit
limit=$(ulimit -H -v)

Expand All @@ -499,7 +499,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: virtual memory size (soft)" {
@test "ulimit: Virtual memory size (soft)" {
local limit
limit=$(ulimit -S -v)

Expand All @@ -514,7 +514,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: number of file locks (hard)" {
@test "ulimit: Number of file locks (hard)" {
local limit
limit=$(ulimit -H -x)

Expand All @@ -529,7 +529,7 @@ teardown_file() {
}

# bats test_tags=arch-fedora
@test "ulimit: number of file locks (soft)" {
@test "ulimit: Number of file locks (soft)" {
local limit
limit=$(ulimit -S -x)

Expand Down
Loading