1#!/usr/bin/env python3 2# -*- coding: utf-8 -*- 3# Copyright 2020 The Chromium OS Authors. All rights reserved. 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 9from __future__ import print_function 10 11import sys 12 13 14def Main(): 15 return 1 ## False, flashing failure 16 17 18if __name__ == '__main__': 19 retval = Main() 20 sys.exit(retval) 21