aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2018-11-20 19:13:13 +0200
committerOrgad Shaneh <orgad.shaneh@audiocodes.com>2018-11-20 19:13:13 +0200
commit5170dd08585d40952a83e00571072fe32432a2fd (patch)
tree91641c9e9185ffedb48e3a5b4cc0b781fd08eb8c /tests/auto
parent2e6aa7a0eda53bd3440c10b6facf504558e19c70 (diff)
parent2a65be107bf89cf0be9c07d15742720a5621abf3 (diff)
Merge remote-tracking branch 'origin/4.8'
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/debugger/tst_dumpers.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp
index 9d439f05c2d..89d54ab1bba 100644
--- a/tests/auto/debugger/tst_dumpers.cpp
+++ b/tests/auto/debugger/tst_dumpers.cpp
@@ -5416,7 +5416,7 @@ void tst_Dumpers::dumper_data()
"Flags fthree = (Flags)(one|two); unused(&fthree);\n"
"Flags fmixed = (Flags)(two|8); unused(&fmixed);\n"
"Flags fbad = (Flags)(24); unused(&fbad);\n")
- + GdbEngine
+ + NoCdbEngine
+ Check("fone", "one (1)", "Flags")
+ Check("fthree", "(one | two) (3)", "Flags")
+ Check("fmixed", "(two | unknown: 8) (10)", "Flags")
@@ -5433,7 +5433,7 @@ void tst_Dumpers::dumper_data()
" Enum3 e3 = Enum3(c3 | b3);\n"
"};\n",
"E e;\n")
- + GdbEngine
+ + NoCdbEngine
+ Check("e.e1", "(E::b1 | E::c1) (3)", "E::Enum1")
+ Check("e.e2", "(E::b2 | E::c2) (3)", "E::Enum2")
+ Check("e.e3", "(E::b3 | E::c3) (3)", "E::Enum3");