[zorg] r246883 - [asan] Fix an incorrect adb environment variable name.

Evgeniy Stepanov via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 4 14:54:29 PDT 2015


Author: eugenis
Date: Fri Sep  4 16:54:29 2015
New Revision: 246883

URL: http://llvm.org/viewvc/llvm-project?rev=246883&view=rev
Log:
[asan] Fix an incorrect adb environment variable name.

This worked before because we never had more than one device attached
to the bot.

Modified:
    zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_android_functions.sh

Modified: zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_android_functions.sh
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_android_functions.sh?rev=246883&r1=246882&r2=246883&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_android_functions.sh (original)
+++ zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_android_functions.sh Fri Sep  4 16:54:29 2015
@@ -110,7 +110,7 @@ function test_android_on_device { # ARCH
     ADB=$ROOT/../../../bin/adb
     DEVICE_ROOT=/data/local/asan_test
 
-    export ADB_SERIAL=$_serial
+    export ANDROID_SERIAL=$_serial
     echo "Serial $_serial"
 
     echo @@@BUILD_STEP device setup [$DEVICE_DESCRIPTION]@@@




More information about the llvm-commits mailing list