]> git.lizzy.rs Git - rust.git/blob - src/etc/adb_run_wrapper.sh
Auto merge of #31077 - nagisa:mir-temp-promotion, r=dotdash
[rust.git] / src / etc / adb_run_wrapper.sh
1 # Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 # file at the top-level directory of this distribution and at
3 # http://rust-lang.org/COPYRIGHT.
4 #
5 # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 # option. This file may not be copied, modified, or distributed
9 # except according to those terms.
10 #
11 # ignore-tidy-linelength
12 #
13 # usage : adb_run_wrapper [test dir - where test executables exist] [test executable]
14 #
15
16 TEST_PATH=$1
17 BIN_PATH=/system/bin
18 if [ -d "$TEST_PATH" ]
19 then
20     shift
21     RUN=$1
22
23     if [ ! -z "$RUN" ]
24     then
25         shift
26
27         # The length of binary path (i.e. ./$RUN) should be shorter than 128 characters.
28         cd $TEST_PATH
29         TEST_EXEC_ENV=22 LD_LIBRARY_PATH=$TEST_PATH PATH=$BIN_PATH:$TEST_PATH ./$RUN $@ 1>$TEST_PATH/$RUN.stdout 2>$TEST_PATH/$RUN.stderr
30         L_RET=$?
31
32         echo $L_RET > $TEST_PATH/$RUN.exitcode
33
34     fi
35 fi