1#!/bin/bash 2 3# Copyright 2012 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 7read line 8 9if [ "$line" == "test" ]; then 10 exit 0 11else 12 exit 1 13fi 14