diff options
author | Alex Bennée | 2018-11-13 11:47:59 +0100 |
---|---|---|
committer | Peter Maydell | 2018-11-13 11:47:59 +0100 |
commit | f251cb237188d4398edeb47234d9d32fb701516a (patch) | |
tree | 91c681c96062bdc04e42081cc8d67375b98fc641 /tests | |
parent | target/arm64: kvm debug set target_el when passing exception to guest (diff) | |
download | qemu-f251cb237188d4398edeb47234d9d32fb701516a.tar.gz qemu-f251cb237188d4398edeb47234d9d32fb701516a.tar.xz qemu-f251cb237188d4398edeb47234d9d32fb701516a.zip |
tests/guest-debug: fix scoping of failcount
You should declare you are using a global version of a variable before
you attempt to modify it in a function.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20181109152119.9242-5-alex.bennee@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/guest-debug/test-gdbstub.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/guest-debug/test-gdbstub.py b/tests/guest-debug/test-gdbstub.py index 0e4ac01426..c7e3986a24 100644 --- a/tests/guest-debug/test-gdbstub.py +++ b/tests/guest-debug/test-gdbstub.py @@ -16,6 +16,7 @@ def report(cond, msg): print ("PASS: %s" % (msg)) else: print ("FAIL: %s" % (msg)) + global failcount failcount += 1 |