summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2018-03-27 19:40:13 +0200
committerChristian Persch <chpe@src.gnome.org>2018-03-27 19:40:13 +0200
commit5288de355453232bb0c18e6d0a65885fb8204155 (patch)
treecbab19cda1923c704f03d651235f103676b723af
parent7686ffe760f184a92898e9ff5191c0d6a9fc9d03 (diff)
downloadvte-5288de355453232bb0c18e6d0a65885fb8204155.tar.gz
parser: test: Test DCS sequences without intermediates
-rw-r--r--src/parser-test.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/parser-test.cc b/src/parser-test.cc
index c8935455..78a5e0ca 100644
--- a/src/parser-test.cc
+++ b/src/parser-test.cc
@@ -1072,6 +1072,10 @@ test_seq_dcs(uint32_t p,
int expected_rv = VTE_SEQ_DCS)
{
uint32_t i[4];
+ for (uint32_t f = 0x40; f < 0x7f; f++) {
+ test_seq_dcs(f, p, params, i, 0, str, expected_rv);
+ }
+
for (uint32_t f = 0x30; f < 0x7f; f++) {
for (i[0] = 0x20; i[0] < 0x30; i[0]++) {
test_seq_dcs(f, p, params, i, 1, str, expected_rv);