Re-enable index-basics-workers test to see if still times
[chromium-blink-merge.git] / tools / metrics / histograms / validate_format.py
blobf337e6ed2cebc86e59c651aebd6522cb5b5af6ab
1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 """Verifies that the histograms XML file is well-formatted."""
7 import extract_histograms
10 def main():
11 # This will raise an exception if the file is not well-formatted.
12 histograms = extract_histograms.ExtractHistograms('histograms.xml')
15 if __name__ == '__main__':
16 main()