diff options
| author | Mark Lobodzinski <mark@lunarg.com> | 2017-06-27 09:38:15 -0600 |
|---|---|---|
| committer | Mark Lobodzinski <mark@lunarg.com> | 2017-06-27 09:40:18 -0600 |
| commit | d6bbf521ddb38115398f79e3fccb55d95b018546 (patch) | |
| tree | 0b21ea1995fcfe19db9fb9b23c60c3734e85afc0 /scripts | |
| parent | 779c7f86ba582f0609d04338d1f9fa3573804640 (diff) | |
| download | usermoji-d6bbf521ddb38115398f79e3fccb55d95b018546.tar.xz | |
scripts: Updated validation_stats error output
Change-Id: I41f592c8fa7a9180d5bd07446d965fa9eb287558
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/vk_validation_stats.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/vk_validation_stats.py b/scripts/vk_validation_stats.py index 7db67397..3c930f39 100755 --- a/scripts/vk_validation_stats.py +++ b/scripts/vk_validation_stats.py @@ -186,8 +186,9 @@ class ValidationSource: qualified_paths.append(filepath) continue if len(self.generated_source_files) != len(qualified_paths): - print("Error: Unable to locate one or more of the following source files in the build, dbuild, or release directories") + print("Error: Unable to locate one or more of the following source files in the %s directories" % (", ".join(generated_source_directories))) print(self.generated_source_files) + print("Skipping documentation validation test") quit() else: self.source_files.extend(qualified_paths) |
