summaryrefslogtreecommitdiff
path: root/test/system
diff options
context:
space:
mode:
Diffstat (limited to 'test/system')
-rw-r--r--test/system/255-auto-update.bats2
-rw-r--r--test/system/450-interactive.bats12
2 files changed, 8 insertions, 6 deletions
diff --git a/test/system/255-auto-update.bats b/test/system/255-auto-update.bats
index 9bfb44791..3713243d5 100644
--- a/test/system/255-auto-update.bats
+++ b/test/system/255-auto-update.bats
@@ -194,7 +194,7 @@ function _confirm_update() {
run_podman 125 auto-update
update_log=$output
is "$update_log" ".*invalid auto-update policy.*" "invalid policy setup"
- is "$update_log" ".*1 error occurred.*" "invalid policy setup"
+ is "$update_log" ".*Error: invalid auto-update policy.*" "invalid policy setup"
local n_updated=$(grep -c 'Trying to pull' <<<"$update_log")
is "$n_updated" "2" "Number of images updated from registry."
diff --git a/test/system/450-interactive.bats b/test/system/450-interactive.bats
index 53925b3c8..47bdff9ab 100644
--- a/test/system/450-interactive.bats
+++ b/test/system/450-interactive.bats
@@ -61,12 +61,14 @@ function teardown() {
run_podman rm -f mystty
- # check that the same works for podman exec
- run_podman run -d --name mystty $IMAGE top
- run_podman exec -it mystty stty size <$PODMAN_TEST_PTY
- is "$output" "$rows $cols" "stty under podman exec reads the correct dimensions"
+ # FIXME: the checks below are flaking a lot (see #10710).
- run_podman rm -f mystty
+ # check that the same works for podman exec
+# run_podman run -d --name mystty $IMAGE top
+# run_podman exec -it mystty stty size <$PODMAN_TEST_PTY
+# is "$output" "$rows $cols" "stty under podman exec reads the correct dimensions"
+#
+# run_podman rm -f mystty
}