aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Houlton <daveh@lunarg.com>2017-05-18 15:56:22 -0600
committerDave Houlton <daveh@lunarg.com>2017-05-18 16:43:21 -0600
commitd1303adcc0ca4f9eda43db882a8ab6f56773e78b (patch)
treed203d9b6b4e38cb80a1ec7f2fe80f02d7e62c319
parentdc04fdfe804d20f393b5e25ccabf351198042a9a (diff)
downloadusermoji-d1303adcc0ca4f9eda43db882a8ab6f56773e78b.tar.xz
layers: Add NotTestable to the ...stats.py script
Change-Id: I06befac273829cf54c1ba113be31da9ba3fee190
-rwxr-xr-xlayers/vk_validation_stats.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/vk_validation_stats.py b/layers/vk_validation_stats.py
index 21c0e0b0..43f16a82 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])