Signed-off-by: Vinson Lee <v...@twitter.com> --- client/tests/ltp/ltp.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/client/tests/ltp/ltp.py b/client/tests/ltp/ltp.py index bfa13e7..e162ee0 100644 --- a/client/tests/ltp/ltp.py +++ b/client/tests/ltp/ltp.py @@ -67,7 +67,8 @@ class ltp(test.test): for line in result.stdout.splitlines(): if set(('TFAIL', 'TBROK', 'TWARN')).intersection(line.split()): test_name = line.strip().split(' ')[0] - if not test_name in ignore_tests: + if not test_name in ignore_tests and \ + not test_name in failed_tests: failed_tests.append(test_name) if failed_tests: -- 1.7.5.4 _______________________________________________ Autotest mailing list Autotest@test.kernel.org http://test.kernel.org/cgi-bin/mailman/listinfo/autotest