2012-07-09 13:11:57 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
"""Enables dalvik vm asserts in the android device."""
|
|
|
|
|
2014-04-10 23:37:30 +04:00
|
|
|
from pylib.device import device_utils
|
2012-07-09 13:11:57 +04:00
|
|
|
import optparse
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
|
|
def main(argv):
|
|
|
|
option_parser = optparse.OptionParser()
|
|
|
|
option_parser.add_option('--enable_asserts', dest='set_asserts',
|
|
|
|
action='store_true', default=None,
|
|
|
|
help='Sets the dalvik.vm.enableassertions property to "all"')
|
|
|
|
option_parser.add_option('--disable_asserts', dest='set_asserts',
|
|
|
|
action='store_false', default=None,
|
|
|
|
help='Removes the dalvik.vm.enableassertions property')
|
2012-07-10 17:21:43 +04:00
|
|
|
options, _ = option_parser.parse_args(argv)
|
2012-07-09 13:11:57 +04:00
|
|
|
|
2014-04-10 23:37:30 +04:00
|
|
|
device = device_utils.DeviceUtils()
|
2012-07-09 13:11:57 +04:00
|
|
|
if options.set_asserts != None:
|
2014-04-10 23:37:30 +04:00
|
|
|
if device.old_interface.SetJavaAssertsEnabled(options.set_asserts):
|
|
|
|
device.old_interface.Reboot(full_reboot=False)
|
2012-07-09 13:11:57 +04:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main(sys.argv)
|