tests/guest-debug: fix scoping of failcount
authorAlex Bennée <alex.bennee@linaro.org>
Tue, 13 Nov 2018 10:47:59 +0000 (10:47 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Tue, 13 Nov 2018 10:47:59 +0000 (10:47 +0000)
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>
tests/guest-debug/test-gdbstub.py

index 0e4ac0142608be4210483827590040fb20b3c02b..c7e3986a2498fe851734db6f6693e73660ee73e1 100644 (file)
@@ -16,6 +16,7 @@ def report(cond, msg):
         print ("PASS: %s" % (msg))
     else:
         print ("FAIL: %s" % (msg))
+        global failcount
         failcount += 1