xref: /aosp_15_r20/external/minijail/test/read_stdin (revision 4b9c6d91573e8b3a96609339b46361b5476dd0f9)
1*4b9c6d91SCole Faust#!/bin/bash
2*4b9c6d91SCole Faust
3*4b9c6d91SCole Faust# Copyright 2012 The ChromiumOS Authors
4*4b9c6d91SCole Faust# Use of this source code is governed by a BSD-style license that can be
5*4b9c6d91SCole Faust# found in the LICENSE file.
6*4b9c6d91SCole Faust
7*4b9c6d91SCole Faustread line
8*4b9c6d91SCole Faust
9*4b9c6d91SCole Faustif [ "$line" == "test" ]; then
10*4b9c6d91SCole Faust	exit 0
11*4b9c6d91SCole Faustelse
12*4b9c6d91SCole Faust	exit 1
13*4b9c6d91SCole Faustfi
14