aboutgitcodebugslistschat
diff options
context:
space:
mode:
authorStefano Brivio <sbrivio@redhat.com>2023-02-12 23:52:29 +0100
committerStefano Brivio <sbrivio@redhat.com>2023-02-13 00:05:48 +0100
commit67920b882045069d755945cdc56117bfff4b1fcd (patch)
treeef49ca5be937285464fcd6be3fc432a3bdf1f728
parenta234407f5c561b729d7d77f4f9ab82df3ce6a6c7 (diff)
downloadpasst-67920b882045069d755945cdc56117bfff4b1fcd.tar
passt-67920b882045069d755945cdc56117bfff4b1fcd.tar.gz
passt-67920b882045069d755945cdc56117bfff4b1fcd.tar.bz2
passt-67920b882045069d755945cdc56117bfff4b1fcd.tar.lz
passt-67920b882045069d755945cdc56117bfff4b1fcd.tar.xz
passt-67920b882045069d755945cdc56117bfff4b1fcd.tar.zst
passt-67920b882045069d755945cdc56117bfff4b1fcd.zip
test/pasta_options: Ignore failures on shell 'exit'
On shell 'exit' commands, running shells from pasta, we might get: Cannot set tty process group (No such process) as some TTY devices might be unaccessible. This is harmless, but after commit "pasta: propagate exit code from child command", we'll get test failures there, at least with dash. Ignore those explicitly with a ugly workaround: we can't simply do something like: exit || : because the failure is reported by the shell itself once it exits, regardless of the command evaluation. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r--test/pasta_options/log_to_file9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/pasta_options/log_to_file b/test/pasta_options/log_to_file
index 587bf8e..29fb2c8 100644
--- a/test/pasta_options/log_to_file
+++ b/test/pasta_options/log_to_file
@@ -34,12 +34,14 @@ set PORTS -t 10001,10002 -u 10001,10002
set LOG_FILE __STATEDIR__/pasta.log
passt ./pasta -l __LOG_FILE__
-passt exit
+passtb exit
+sleep 1
check [ -s __LOG_FILE__ ]
test Log truncated on creation
passt ./pasta -l __LOG_FILE__
-passt exit
+passtb exit
+sleep 1
check [ $(cat __LOG_FILE__ | wc -l) -eq 1 ]
test Maximum log size
@@ -85,6 +87,7 @@ check_log_size_mountns
test Timestamp consistency after rotations (no FALLOC_FL_COLLAPSE_RANGE)
check tail -n +2 __LOG_FILE__ | cut -f1 -d' ' | tr -d [.:] | sort -c
-passt exit
+passtb exit
+sleep 1
passt umount __STATEDIR__/t
passt exit