summaryrefslogtreecommitdiffstats
path: root/debian/tests/t/bug-982435-CVE-2021-26937.t
diff options
context:
space:
mode:
Diffstat (limited to 'debian/tests/t/bug-982435-CVE-2021-26937.t')
-rw-r--r--debian/tests/t/bug-982435-CVE-2021-26937.t18
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/tests/t/bug-982435-CVE-2021-26937.t b/debian/tests/t/bug-982435-CVE-2021-26937.t
new file mode 100644
index 0000000..90cc361
--- /dev/null
+++ b/debian/tests/t/bug-982435-CVE-2021-26937.t
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+echo 1..2
+
+. `dirname $0`/boilerplate.sh
+
+for enc in C C.UTF-8 ; do
+ LC_ALL=$enc
+ export LC_ALL
+
+ $SCREEN cat debian/tests/t/bug-982435-CVE-2021-26937.crash > /dev/null 2>&1
+ sleep 1
+ screen -ls | fgrep -q 'Dead ???'
+ check_exit_code_false "No dead session found after triggering a CVE-2021-26937 crash (LC_ALL=$enc)"
+
+ # Cleanup in case of crash
+ screen -wipe > /dev/null 2>&1 || true
+done