Home | History | Annotate | Download | only in platform_SyncCrash
      1 # Copyright (c) 2013 The Chromium OS 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.
      4 
      5 NAME = "platform_SyncCrash"
      6 AUTHOR = "chromeos-kernel,taysom"
      7 ATTRIBUTES = "suite:kernel_daily_regression"
      8 SUITE = "kernel_daily_regression"
      9 DEPENDENCIES = "servo"
     10 TIME = "MEDIUM"
     11 TEST_CATEGORY = "Functional"
     12 TEST_CLASS = "platform"
     13 TEST_TYPE = "server"
     14 
     15 DOC = """
     16 Tests syncing file before crash.
     17 """
     18 
     19 def run_sync_crash(machine):
     20     host = hosts.create_host(machine)
     21     job.run_test("platform_SyncCrash", host=host)
     22 
     23 parallel_simple(run_sync_crash, machines)
     24