blob: f462ba139da3bf5113c2f856a8a72e2aaeb1d502 [file] [log] [blame]
#!/usr/bin/env python
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import sys
import os
from core import system_health_csv_generator
from core import path_util
SYSTEM_HEALTH_CSV = os.path.join(path_util.GetPerfDir(),
'system_health_stories.csv')
if __name__ == '__main__':
sys.exit(system_health_csv_generator.GenerateSystemHealthCSV(
SYSTEM_HEALTH_CSV))