Skip to content
Snippets Groups Projects
Select Git revision
  • 85c0bf06796fad0b50c61b3de641673155e00c40
  • 2.11.5-picodata default protected
  • ipotemin/trigger-binding
  • picodata-25.4
  • astrochuk/fiber-stack-addr
  • mlaletin/ci-tarantool-module protected
  • astrochuk/remove-rows
  • artshmelev/try-remove-condition-replicaset_connect_quorum
  • kusancho/fiber_stack_report
  • e.dmitriev/osx-arm-build-fix
  • nnk/warning-limit-and-iproto-executor
  • kdy/ci_build_with_tag protected
  • nnk/iproto-emergency-executor
  • nnk/add-vdbe-soft-limit
  • origin/picodata-25.3
  • artshmelev/debug-tls
  • v.klimenko/box_index_iterator_with_offset
  • picodata-25.3
  • funbringer/2.11.5-fix-select-param-having
  • max/new-cache2
  • nnk/expose-actual-vdbe-opcode-count
  • 2.11.5.283 protected
  • 2.11.5.266 protected
  • 2.11.5.265 protected
  • 2.11.5.254 protected
  • 2.11.5.253 protected
  • 2.11.5.233 protected
  • 2.11.5.230 protected
  • 2.11.5.228 protected
  • 2.11.5.226 protected
  • 2.11.5.225 protected
  • 2.11.5.223 protected
  • 2.11.5.221 protected
  • 2.11.5.220 protected
  • 2.11.5.219 protected
  • 2.11.5.218 protected
  • 2.11.5.217 protected
  • 2.11.5 protected
  • 2.11.2.159 protected
  • 2.11.4 protected
  • 2.11.2.155 protected
41 results

configuration.test

Blame
  • off.test 870 B
    # encoding: tarantool
    #
    
    import os
    import sys
    
    # mask BFD warnings: https://bugs.launchpad.net/tarantool/+bug/1018356
    sys.stdout.push_filter("unable to read unknown load command 0x2\d+", "")
    
    print """
    # Bug #855616:
    # memcached_space must not be configured
    # (https://bugs.launchpad.net/bugs/855616)
    """
    # stop current server
    server.stop()
    # start server with memcached off
    server.deploy("box_memcached/tarantool_memcached_off.cfg")
    # check values
    exec admin "show configuration"
    
    # stop current server
    server.stop()
    # start server with memcached space conflict
    sys.stdout.push_filter("(/\S+)+/tarantool", "tarantool")
    server.test_option("-c " + os.path.join(os.getcwd(), "box_memcached/tarantool_memcached_bad.cfg"))
    sys.stdout.pop_filter()
    
    # restore default server
    server.stop()
    server.deploy(self.suite_ini["config"])
    
    sys.stdout.pop_filter()
    
    # vim: syntax=python