1#!/usr/bin/env python3 2# -*- coding: utf-8 -*- 3# Copyright 2020 The ChromiumOS Authors 4# Use of this source code is governed by a BSD-style license that can be 5# found in the LICENSE file. 6 7"""Emulate test setup that fails (i.e. failed flash to device)""" 8 9 10import sys 11 12 13def Main(): 14 return 1 ## False, flashing failure 15 16 17if __name__ == "__main__": 18 retval = Main() 19 sys.exit(retval) 20