[zorg] r255367 - [asan] Stop app runtime on the N9 bot.

Evgeniy Stepanov via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 11 11:59:59 PST 2015


Author: eugenis
Date: Fri Dec 11 13:59:59 2015
New Revision: 255367

URL: http://llvm.org/viewvc/llvm-project?rev=255367&view=rev
Log:
[asan] Stop app runtime on the N9 bot.

This will free up some memory and may make the bot less flaky.


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=255367&r1=255366&r2=255367&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_android_functions.sh (original)
+++ zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_android_functions.sh Fri Dec 11 13:59:59 2015
@@ -128,7 +128,7 @@ function test_android_on_device { # ARCH
     # Nexus Player does not have enough RAM to run ASan tests reliably.
     # Luckily, none of our tests need the application runtime, and killing
     # that can free several hundred megs of RAM.
-    if [[ $_build_flavor == fugu* ]]; then
+    if [[ $_build_flavor == fugu* || $_build_flavor == volantis* ]]; then
       $ADB shell stop
       sleep 2
     fi




More information about the llvm-commits mailing list