blob: bcd15d75481e4ba2d8b345195015f8d80dd40dc7 [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
DEPS = [
'fuchsia/emu',
'recipe_engine/cipd',
]
def RunSteps(api):
api.emu.is_emulator_type('AEMU')
api.emu.is_emulator_type('QEMU')
ensure_file = api.cipd.EnsureFile()
api.emu.add_aemu_to_ensure_file(ensure_file, subdir='aemu')
api.emu.add_qemu_to_ensure_file(ensure_file, subdir='qemu')
def GenTests(api):
yield api.emu.test('default')