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