From d1303adcc0ca4f9eda43db882a8ab6f56773e78b Mon Sep 17 00:00:00 2001 From: Dave Houlton Date: Thu, 18 May 2017 15:56:22 -0600 Subject: [PATCH] layers: Add NotTestable to the ...stats.py script Change-Id: I06befac273829cf54c1ba113be31da9ba3fee190 --- layers/vk_validation_stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layers/vk_validation_stats.py b/layers/vk_validation_stats.py index 21c0e0b..43f16a8 100755 --- a/layers/vk_validation_stats.py +++ b/layers/vk_validation_stats.py @@ -122,7 +122,7 @@ class ValidationDatabase: self.db_unimplemented_implicit.append(error_enum) if implemented not in ['Y', 'N']: self.db_invalid_implemented.append(error_enum) - if testname.lower() not in ['unknown', 'none']: + if testname.lower() not in ['unknown', 'none', 'nottestable']: self.db_enum_to_tests[error_enum] = testname.split(',') #if len(self.db_enum_to_tests[error_enum]) > 1: # print "Found check %s that has multiple tests: %s" % (error_enum, self.db_enum_to_tests[error_enum]) -- 2.7.4