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
7 read line
8
9 if [ "$line" == "test" ]; then
10 exit 0
11 else
12 exit 1
13 fi
14