report.html

Report generated on 25-Sep-2019 at 19:43:21 by pytest-html v2.0.0

Environment

389-ds-base 1.4.2.1-20190924git56ea32d66.fc30
FIPS disabled
Packages {'pytest': '5.1.3', 'py': '1.8.0', 'pluggy': '0.13.0'}
Platform Linux-5.0.9-301.fc30.x86_64-x86_64-with-fedora-30-Thirty
Plugins {'html': '2.0.0', 'metadata': '1.8.0'}
Python 3.7.4
cyrus-sasl 2.1.27-0.6rc7.fc30
nspr 4.22.0-1.fc30
nss 3.46.0-2.fc30
openldap 2.4.47-1.fc30

Summary

37 tests ran in 206.91 seconds.

36 passed, 0 skipped, 1 failed, 0 errors, 0 expected failures, 0 unexpected passes

Results

Result Test Duration Links
Failed tests/suites/basic/basic_test.py::test_basic_ldapagent 0.23
topology_st = <lib389.topologies.TopologyMain object at 0x7f0a1eac30d0>, import_example_ldif = None

def test_basic_ldapagent(topology_st, import_example_ldif):
"""Tests that the ldap agent starts

:id: da1d1846-8fc4-4b8c-8e53-4c9c16eff1ba

:setup: Standalone instance

:steps:
1. Start SNMP ldap agent using command.
2. Cleanup - Kill SNMP agent process.

:expectedresults:
1. SNMP agent should start.
2. SNMP agent process should be successfully killed.
"""

log.info('Running test_basic_ldapagent...')

var_dir = topology_st.standalone.get_local_state_dir()

config_file = os.path.join(topology_st.standalone.get_sysconf_dir(), 'dirsrv/config/agent.conf')

agent_config_file = open(config_file, 'w')
agent_config_file.write('agentx-master ' + var_dir + '/agentx/master\n')
agent_config_file.write('agent-logdir ' + var_dir + '/log/dirsrv\n')
agent_config_file.write('server slapd-' + topology_st.standalone.serverid + '\n')
agent_config_file.close()

# Remember, this is *forking*
> check_output([os.path.join(topology_st.standalone.get_sbin_dir(), 'ldap-agent'), config_file])

dirsrvtests/tests/suites/basic/basic_test.py:853:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.7/subprocess.py:395: in check_output
**kwargs).stdout
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

input = None, capture_output = False, timeout = None, check = True
popenargs = (['/usr/sbin/ldap-agent', '/etc/dirsrv/config/agent.conf'],), kwargs = {'stdout': -1}
process = <subprocess.Popen object at 0x7f0a1d9f0dd0>, stdout = b'', stderr = None, retcode = 1

def run(*popenargs,
input=None, capture_output=False, timeout=None, check=False, **kwargs):
"""Run command with arguments and return a CompletedProcess instance.

The returned instance will have attributes args, returncode, stdout and
stderr. By default, stdout and stderr are not captured, and those attributes
will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.

If check is True and the exit code was non-zero, it raises a
CalledProcessError. The CalledProcessError object will have the return code
in the returncode attribute, and output & stderr attributes if those streams
were captured.

If timeout is given, and the process takes too long, a TimeoutExpired
exception will be raised.

There is an optional argument "input", allowing you to
pass bytes or a string to the subprocess's stdin. If you use this argument
you may not also use the Popen constructor's "stdin" argument, as
it will be used internally.

By default, all communication is in bytes, and therefore any "input" should
be bytes, and the stdout and stderr will be bytes. If in text mode, any
"input" should be a string, and stdout and stderr will be strings decoded
according to locale encoding, or by "encoding" if set. Text mode is
triggered by setting any of text, encoding, errors or universal_newlines.

The other arguments are the same as for the Popen constructor.
"""
if input is not None:
if kwargs.get('stdin') is not None:
raise ValueError('stdin and input arguments may not both be used.')
kwargs['stdin'] = PIPE

if capture_output:
if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
raise ValueError('stdout and stderr arguments may not be used '
'with capture_output.')
kwargs['stdout'] = PIPE
kwargs['stderr'] = PIPE

with Popen(*popenargs, **kwargs) as process:
try:
stdout, stderr = process.communicate(input, timeout=timeout)
except TimeoutExpired:
process.kill()
stdout, stderr = process.communicate()
raise TimeoutExpired(process.args, timeout, output=stdout,
stderr=stderr)
except: # Including KeyboardInterrupt, communicate handled that.
process.kill()
# We don't call process.wait() as .__exit__ does that for us.
raise
retcode = process.poll()
if check and retcode:
raise CalledProcessError(retcode, process.args,
> output=stdout, stderr=stderr)
E subprocess.CalledProcessError: Command '['/usr/sbin/ldap-agent', '/etc/dirsrv/config/agent.conf']' returned non-zero exit status 1.

/usr/lib64/python3.7/subprocess.py:487: CalledProcessError
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Running test_basic_ldapagent... ================================================================= ==569==ERROR: LeakSanitizer: detected memory leaks Direct leak of 30 byte(s) in 1 object(s) allocated from: #0 0x7f1653afa52d in strdup (/lib64/libasan.so.5+0x9652d) #1 0x557097aadecf in main ldap/servers/snmp/main.c:98 #2 0x7f16535e6f32 in __libc_start_main (/lib64/libc.so.6+0x23f32) SUMMARY: AddressSanitizer: 30 byte(s) leaked in 1 allocation(s).
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:840 Running test_basic_ldapagent...
Passed tests/suites/basic/basic_test.py::test_basic_ops 0.15
-----------------------------Captured stdout setup------------------------------
Instance slapd-standalone1 removed.
-----------------------------Captured stderr setup------------------------------
INFO:lib389.topologies:Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO:dirsrvtests.tests.suites.basic.basic_test:Initializing the "basic" test suite
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:106 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:57 Initializing the "basic" test suite
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Running test_basic_ops... INFO:dirsrvtests.tests.suites.basic.basic_test:test_basic_ops: PASSED
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:122 Running test_basic_ops... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:231 test_basic_ops: PASSED
Passed tests/suites/basic/basic_test.py::test_basic_import_export 82.94
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Running test_basic_import_export... INFO:dirsrvtests.tests.suites.basic.basic_test:Generating LDIF... INFO:dirsrvtests.tests.suites.basic.basic_test:Importing LDIF online... INFO:dirsrvtests.tests.suites.basic.basic_test:Importing LDIF offline... INFO:dirsrvtests.tests.suites.basic.basic_test:Exporting LDIF online... INFO:dirsrvtests.tests.suites.basic.basic_test:Exporting LDIF offline... ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export.ldif INFO:dirsrvtests.tests.suites.basic.basic_test:Restore datrabase, import initial LDIF... INFO:dirsrvtests.tests.suites.basic.basic_test:test_basic_import_export: PASSED
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:258 Running test_basic_import_export... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:266 Generating LDIF... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:272 Importing LDIF online... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:290 Importing LDIF offline... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:302 Exporting LDIF online... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:310 Exporting LDIF offline... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:322 Restore datrabase, import initial LDIF... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:331 test_basic_import_export: PASSED
Passed tests/suites/basic/basic_test.py::test_basic_backup 10.38
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Running test_basic_backup... INFO:lib389:Backup task backup_09252019_194125 completed successfully INFO:lib389:Restore task restore_09252019_194127 completed successfully INFO:dirsrvtests.tests.suites.basic.basic_test:test_basic_backup: PASSED
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:354 Running test_basic_backup... INFO  lib389:tasks.py:589 Backup task backup_09252019_194125 completed successfully INFO  lib389:tasks.py:643 Restore task restore_09252019_194127 completed successfully INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:386 test_basic_backup: PASSED
Passed tests/suites/basic/basic_test.py::test_basic_db2index 7.90
------------------------------Captured stderr call------------------------------
[25/Sep/2019:19:41:38.722519367 +0000] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [25/Sep/2019:19:41:38.741107286 +0000] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7718100992, process usage 73224192 [25/Sep/2019:19:41:38.742099430 +0000] - INFO - check_and_set_import_cache - Import allocates 3014883KB import cache. [25/Sep/2019:19:41:38.744106057 +0000] - INFO - dblayer_copy_directory - Backing up file 0 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/sn.db) [25/Sep/2019:19:41:38.745169051 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/sn.db [25/Sep/2019:19:41:38.745939325 +0000] - INFO - dblayer_copy_directory - Backing up file 1 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/entryusn.db) [25/Sep/2019:19:41:38.746667880 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/entryusn.db [25/Sep/2019:19:41:38.747496474 +0000] - INFO - dblayer_copy_directory - Backing up file 2 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/uniquemember.db) [25/Sep/2019:19:41:38.748197632 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/uniquemember.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/uniquemember.db [25/Sep/2019:19:41:38.748947122 +0000] - INFO - dblayer_copy_directory - Backing up file 3 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/nsuniqueid.db) [25/Sep/2019:19:41:38.749688524 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/nsuniqueid.db [25/Sep/2019:19:41:38.750308139 +0000] - INFO - dblayer_copy_directory - Backing up file 4 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/parentid.db) [25/Sep/2019:19:41:38.751124692 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/parentid.db [25/Sep/2019:19:41:38.751862443 +0000] - INFO - dblayer_copy_directory - Backing up file 5 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/DBVERSION) [25/Sep/2019:19:41:38.752576536 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/DBVERSION to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/DBVERSION [25/Sep/2019:19:41:38.753326008 +0000] - INFO - dblayer_copy_directory - Backing up file 6 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/givenName.db) [25/Sep/2019:19:41:38.753961654 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/givenName.db [25/Sep/2019:19:41:38.754731367 +0000] - INFO - dblayer_copy_directory - Backing up file 7 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/cn.db) [25/Sep/2019:19:41:38.755383573 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/cn.db [25/Sep/2019:19:41:38.756302678 +0000] - INFO - dblayer_copy_directory - Backing up file 8 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/mail.db) [25/Sep/2019:19:41:38.756968035 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/mail.db [25/Sep/2019:19:41:38.757708771 +0000] - INFO - dblayer_copy_directory - Backing up file 9 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/aci.db) [25/Sep/2019:19:41:38.758401161 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/aci.db [25/Sep/2019:19:41:38.759254505 +0000] - INFO - dblayer_copy_directory - Backing up file 10 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/ancestorid.db) [25/Sep/2019:19:41:38.760056045 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/ancestorid.db [25/Sep/2019:19:41:38.760740997 +0000] - INFO - dblayer_copy_directory - Backing up file 11 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/numsubordinates.db) [25/Sep/2019:19:41:38.761514317 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/numsubordinates.db [25/Sep/2019:19:41:38.762378675 +0000] - INFO - dblayer_copy_directory - Backing up file 12 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/telephoneNumber.db) [25/Sep/2019:19:41:38.763143749 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/telephoneNumber.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/telephoneNumber.db [25/Sep/2019:19:41:38.763913407 +0000] - INFO - dblayer_copy_directory - Backing up file 13 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/id2entry.db) [25/Sep/2019:19:41:38.764549536 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/id2entry.db [25/Sep/2019:19:41:38.765538417 +0000] - INFO - dblayer_copy_directory - Backing up file 14 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/objectclass.db) [25/Sep/2019:19:41:38.766173912 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/objectclass.db [25/Sep/2019:19:41:38.766897128 +0000] - INFO - dblayer_copy_directory - Backing up file 15 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/uid.db) [25/Sep/2019:19:41:38.767578224 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/uid.db [25/Sep/2019:19:41:38.768287285 +0000] - INFO - dblayer_copy_directory - Backing up file 16 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/entryrdn.db) [25/Sep/2019:19:41:38.769032482 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/userRoot/entryrdn.db [25/Sep/2019:19:41:38.770183595 +0000] - INFO - upgradedb_core - userRoot: Start upgradedb. [25/Sep/2019:19:41:38.771073126 +0000] - INFO - dblayer_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [25/Sep/2019:19:41:38.935642645 +0000] - INFO - import_main_offline - reindex userRoot: Index buffering enabled with bucket size 100 [25/Sep/2019:19:41:39.581243146 +0000] - INFO - import_monitor_threads - reindex userRoot: Workers finished; cleaning up... [25/Sep/2019:19:41:39.782771217 +0000] - INFO - import_monitor_threads - reindex userRoot: Workers cleaned up. [25/Sep/2019:19:41:39.783919873 +0000] - INFO - import_main_offline - reindex userRoot: Cleaning up producer thread... [25/Sep/2019:19:41:39.784704338 +0000] - INFO - import_main_offline - reindex userRoot: Indexing complete. Post-processing... [25/Sep/2019:19:41:39.785380161 +0000] - INFO - import_main_offline - reindex userRoot: Generating numsubordinates (this may take several minutes to complete)... [25/Sep/2019:19:41:39.785931107 +0000] - INFO - import_main_offline - reindex userRoot: Generating numSubordinates complete. [25/Sep/2019:19:41:39.786765822 +0000] - INFO - ldbm_get_nonleaf_ids - reindex userRoot: Gathering ancestorid non-leaf IDs... [25/Sep/2019:19:41:39.787419904 +0000] - INFO - ldbm_get_nonleaf_ids - reindex userRoot: Finished gathering ancestorid non-leaf IDs. [25/Sep/2019:19:41:39.789162592 +0000] - INFO - ldbm_ancestorid_new_idl_create_index - reindex userRoot: Creating ancestorid index (new idl)... [25/Sep/2019:19:41:39.790633597 +0000] - INFO - ldbm_ancestorid_new_idl_create_index - reindex userRoot: Created ancestorid index (new idl). [25/Sep/2019:19:41:39.791249993 +0000] - INFO - import_main_offline - reindex userRoot: Flushing caches... [25/Sep/2019:19:41:39.791773505 +0000] - INFO - import_main_offline - reindex userRoot: Closing files... [25/Sep/2019:19:41:39.898446922 +0000] - INFO - dblayer_pre_close - All database threads now stopped [25/Sep/2019:19:41:39.899672676 +0000] - INFO - import_main_offline - reindex userRoot: Reindexing complete. Processed 160 entries in 1 seconds. (160.00 entries/sec) [25/Sep/2019:19:41:39.904664391 +0000] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/log.0000000001 to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2019-09-25T19:41:38.404193/log.0000000001 [25/Sep/2019:19:41:39.918727232 +0000] - WARN - dblayer_get_home_dir - Db home directory is not set. Possibly nsslapd-directory (optionally nsslapd-db-home-directory) is missing in the config file. [25/Sep/2019:19:41:39.920006781 +0000] - ERR - dblayer_copyfile - Failed to open source file (null)/DBVERSION by "No such file or directory" [25/Sep/2019:19:41:39.920780257 +0000] - INFO - dblayer_pre_close - All database threads now stopped ================================================================= ==32705==ERROR: LeakSanitizer: detected memory leaks Direct leak of 96 byte(s) in 3 object(s) allocated from: #0 0x7f37b2c5fc58 in __interceptor_malloc (/lib64/libasan.so.5+0x10dc58) #1 0x7f37b257f997 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1133 Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f61af (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005278bf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f7b2f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f833f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f69bf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000506dcf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f38ff (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f413f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f494f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f512f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f596f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f8b7f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004c29cf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f107f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004e855f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004e8d6f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004e957f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004e9eaf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004ea6bf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004eaecf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004eb6df (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004ebf1f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004ec75f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004ecf6f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004ed77f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004edf5f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004ee76f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f00bf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f089f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004e7fef (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f18bf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f209f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f28af (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f93bf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f9bcf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004fa3df (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004fac1f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004fb42f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004fbc3f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004fc44f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004fcc5f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004fd46f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004fdcaf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004fe4bf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004fecff (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004ff4df (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004ffcef (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004ef54f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005004ff (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000500cdf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005014ef (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000501d2f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050253f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000502d4f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050355f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000503d3f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050451f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000504d2f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050553f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000505d4f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050658f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f30ef (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050760f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000507e1f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050862f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000508e0f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005095bf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000509dcf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050a5af (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050adbf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050b5cf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050bddf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050c5ef (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050cdcf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050d5af (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050ddbf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050e5ff (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050ee6f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050f67f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300050fe8f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004efe7f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300051069f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000510e7f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300051168f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000511e9f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005126af (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000512ebf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005136cf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000513eaf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005146bf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000514ecf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005156af (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000515ebf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005166cf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000516eaf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005176bf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000517eff (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300051870f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000518f1f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005196ff (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000519f0f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300051a71f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300051aeff (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300051b6df (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300051beef (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300051c72f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300051cf3f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300051d74f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300051df5f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300051e76f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300051ef4f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052074f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000520f8f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005217cf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000521fdf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005227ef (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000522fff (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052383f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052401f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052482f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052506f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052584f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052608f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052686f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052707f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030004f72ef (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052809f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005288af (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052908f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052986f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052a04f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052a85f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052b09f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052b8af (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052c0bf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052c8cf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052d0df (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052d8bf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052e0cf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052e8df (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052f0ef (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300052f8cf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300051f0ff (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005300af (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005308bf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300053109f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005318af (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005320bf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300053289f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300053307f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300053388f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005340ff (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000534a8f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005350bf (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x60300053565f (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x603000535bff (<unknown module>) Direct leak of 64 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c6008e in realloc (/lib64/libasan.so.5+0x10e08e) #1 0x7f37b257f932 in GrowStuff ../../.././nspr/pr/src/io/prprf.c:1131 #2 0x6030005362ef (<unknown module>) Direct leak of 56 byte(s) in 1 object(s) allocated from: #0 0x7f37b2c5fc58 in __interceptor_malloc (/lib64/libasan.so.5+0x10dc58) #1 0x7f37b28abe78 in slapi_ch_malloc (/usr/lib64/dirsrv/libslapd.so.0+0xdae78) #2 0x7f37b29e3757 in slapi_new_rwlock (/usr/lib64/dirsrv/libslapd.so.0+0x212757) #3 0x7f37ab744d4b in dblayer_make_env ldap/servers/slapd/back-ldbm/dblayer.c:1049 #4 0x7f37ab755550 in dblayer_get_aux_id2entry_ext ldap/servers/slapd/back-ldbm/dblayer.c:2187 #5 0x7f37ab7914fd in index_producer ldap/servers/slapd/back-ldbm/import-threads.c:923 #6 0x7f37b2598868 in _pt_root ../../.././nspr/pr/src/pthreads/ptthread.c:198 SUMMARY: AddressSanitizer: 10200 byte(s) leaked in 161 allocation(s). [25/Sep/2019:19:41:42.176812837 +0000] - INFO - slapd_exemode_db2index - Backend Instance: userRoot [25/Sep/2019:19:41:42.181122971 +0000] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [25/Sep/2019:19:41:42.199938940 +0000] - INFO - dblayer_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [25/Sep/2019:19:41:42.201154934 +0000] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7719157760, process usage 74137600 [25/Sep/2019:19:41:42.201860009 +0000] - INFO - check_and_set_import_cache - Import allocates 3015296KB import cache. [25/Sep/2019:19:41:42.399147934 +0000] - INFO - ldbm_back_ldbm2index - userRoot: Indexing attribute: uid [25/Sep/2019:19:41:42.423334194 +0000] - INFO - ldbm_back_ldbm2index - userRoot: Finished indexing. [25/Sep/2019:19:41:42.452331515 +0000] - INFO - dblayer_pre_close - All database threads now stopped
Passed tests/suites/basic/basic_test.py::test_basic_acl 0.38
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Running test_basic_acl... INFO:dirsrvtests.tests.suites.basic.basic_test:test_basic_acl: PASSED
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:436 Running test_basic_acl... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:559 test_basic_acl: PASSED
Passed tests/suites/basic/basic_test.py::test_basic_searches 0.13
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Running test_basic_searches... INFO:dirsrvtests.tests.suites.basic.basic_test:test_basic_searches: PASSED
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:578 Running test_basic_searches... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:611 test_basic_searches: PASSED
Passed tests/suites/basic/basic_test.py::test_search_req_attrs[attrs0-cn-False] 0.00
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Testing attrs: ['1.1'] attr: cn present: False
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:648 Testing attrs: ['1.1'] attr: cn present: False
Passed tests/suites/basic/basic_test.py::test_search_req_attrs[attrs1-cn-True] 0.00
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Testing attrs: ['1.1', 'cn'] attr: cn present: True
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:648 Testing attrs: ['1.1', 'cn'] attr: cn present: True
Passed tests/suites/basic/basic_test.py::test_search_req_attrs[attrs2-nsUniqueId-True] 0.00
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Testing attrs: ['+'] attr: nsUniqueId present: True
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:648 Testing attrs: ['+'] attr: nsUniqueId present: True
Passed tests/suites/basic/basic_test.py::test_search_req_attrs[attrs3-cn-True] 0.00
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Testing attrs: ['*'] attr: cn present: True
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:648 Testing attrs: ['*'] attr: cn present: True
Passed tests/suites/basic/basic_test.py::test_search_req_attrs[attrs4-cn-True] 0.00
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Testing attrs: ['cn'] attr: cn present: True
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:648 Testing attrs: ['cn'] attr: cn present: True
Passed tests/suites/basic/basic_test.py::test_basic_referrals 3.94
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Running test_basic_referrals... INFO:dirsrvtests.tests.suites.basic.basic_test:test_basic_referrals: PASSED
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:683 Running test_basic_referrals... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:742 test_basic_referrals: PASSED
Passed tests/suites/basic/basic_test.py::test_basic_systemctl 12.54
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Running test_basic_systemctl... INFO:dirsrvtests.tests.suites.basic.basic_test:Stopping the server... INFO:dirsrvtests.tests.suites.basic.basic_test:Stopped the server. INFO:dirsrvtests.tests.suites.basic.basic_test:Starting the server... INFO:dirsrvtests.tests.suites.basic.basic_test:Started the server. INFO:dirsrvtests.tests.suites.basic.basic_test:Stopping the server... INFO:dirsrvtests.tests.suites.basic.basic_test:Stopped the server before breaking the dse.ldif. INFO:dirsrvtests.tests.suites.basic.basic_test:Attempting to start the server with broken dse.ldif... Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. INFO:dirsrvtests.tests.suites.basic.basic_test:Server failed to start as expected: Command '['systemctl', 'start', 'dirsrv@standalone1']' returned non-zero exit status 1. INFO:dirsrvtests.tests.suites.basic.basic_test:Check the status... INFO:dirsrvtests.tests.suites.basic.basic_test:Server failed to start as expected INFO:dirsrvtests.tests.suites.basic.basic_test:Starting the server with good dse.ldif... INFO:dirsrvtests.tests.suites.basic.basic_test:Check the status... INFO:dirsrvtests.tests.suites.basic.basic_test:Server started after fixing dse.ldif. INFO:dirsrvtests.tests.suites.basic.basic_test:test_basic_systemctl: PASSED
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:769 Running test_basic_systemctl... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:776 Stopping the server... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:778 Stopped the server. INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:783 Starting the server... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:785 Started the server. INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:791 Stopping the server... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:793 Stopped the server before breaking the dse.ldif. INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:800 Attempting to start the server with broken dse.ldif... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:804 Server failed to start as expected: Command '['systemctl', 'start', 'dirsrv@standalone1']' returned non-zero exit status 1. INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:805 Check the status... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:807 Server failed to start as expected INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:815 Starting the server with good dse.ldif... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:817 Check the status... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:819 Server started after fixing dse.ldif. INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:821 test_basic_systemctl: PASSED
Passed tests/suites/basic/basic_test.py::test_basic_dse_survives_kill9 11.67
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Running test_basic_dse... INFO:dirsrvtests.tests.suites.basic.basic_test:dse.ldif was not corrupted, and the server was restarted INFO:dirsrvtests.tests.suites.basic.basic_test:test_basic_dse: PASSED
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:885 Running test_basic_dse... INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:897 dse.ldif was not corrupted, and the server was restarted INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:899 test_basic_dse: PASSED
Passed tests/suites/basic/basic_test.py::test_def_rootdse_attr[namingContexts] 0.01
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Assert rootdse search hasn't namingContexts attr
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:923 Assert rootdse search hasn't namingContexts attr
Passed tests/suites/basic/basic_test.py::test_def_rootdse_attr[supportedLDAPVersion] 0.01
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Assert rootdse search hasn't supportedLDAPVersion attr
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:923 Assert rootdse search hasn't supportedLDAPVersion attr
Passed tests/suites/basic/basic_test.py::test_def_rootdse_attr[supportedControl] 0.01
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Assert rootdse search hasn't supportedControl attr
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:923 Assert rootdse search hasn't supportedControl attr
Passed tests/suites/basic/basic_test.py::test_def_rootdse_attr[supportedExtension] 0.01
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Assert rootdse search hasn't supportedExtension attr
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:923 Assert rootdse search hasn't supportedExtension attr
Passed tests/suites/basic/basic_test.py::test_def_rootdse_attr[supportedSASLMechanisms] 0.01
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Assert rootdse search hasn't supportedSASLMechanisms attr
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:923 Assert rootdse search hasn't supportedSASLMechanisms attr
Passed tests/suites/basic/basic_test.py::test_def_rootdse_attr[vendorName] 0.01
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Assert rootdse search hasn't vendorName attr
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:923 Assert rootdse search hasn't vendorName attr
Passed tests/suites/basic/basic_test.py::test_def_rootdse_attr[vendorVersion] 0.01
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Assert rootdse search hasn't vendorVersion attr
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:923 Assert rootdse search hasn't vendorVersion attr
Passed tests/suites/basic/basic_test.py::test_mod_def_rootdse_attr[namingContexts] 0.01
-----------------------------Captured stderr setup------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Add the nsslapd-return-default-opattr: b'namingContexts' to rootdse
-------------------------------Captured log setup-------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:80 Add the nsslapd-return-default-opattr: b'namingContexts' to rootdse
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Assert rootdse search has b'namingContexts' attr
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:950 Assert rootdse search has b'namingContexts' attr
Passed tests/suites/basic/basic_test.py::test_mod_def_rootdse_attr[supportedLDAPVersion] 0.00
-----------------------------Captured stderr setup------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Add the nsslapd-return-default-opattr: b'supportedLDAPVersion' to rootdse
-------------------------------Captured log setup-------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:80 Add the nsslapd-return-default-opattr: b'supportedLDAPVersion' to rootdse
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Assert rootdse search has b'supportedLDAPVersion' attr
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:950 Assert rootdse search has b'supportedLDAPVersion' attr
Passed tests/suites/basic/basic_test.py::test_mod_def_rootdse_attr[supportedControl] 0.01
-----------------------------Captured stderr setup------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Add the nsslapd-return-default-opattr: b'supportedControl' to rootdse
-------------------------------Captured log setup-------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:80 Add the nsslapd-return-default-opattr: b'supportedControl' to rootdse
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Assert rootdse search has b'supportedControl' attr
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:950 Assert rootdse search has b'supportedControl' attr
Passed tests/suites/basic/basic_test.py::test_mod_def_rootdse_attr[supportedExtension] 0.01
-----------------------------Captured stderr setup------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Add the nsslapd-return-default-opattr: b'supportedExtension' to rootdse
-------------------------------Captured log setup-------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:80 Add the nsslapd-return-default-opattr: b'supportedExtension' to rootdse
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Assert rootdse search has b'supportedExtension' attr
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:950 Assert rootdse search has b'supportedExtension' attr
Passed tests/suites/basic/basic_test.py::test_mod_def_rootdse_attr[supportedSASLMechanisms] 0.01
-----------------------------Captured stderr setup------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Add the nsslapd-return-default-opattr: b'supportedSASLMechanisms' to rootdse
-------------------------------Captured log setup-------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:80 Add the nsslapd-return-default-opattr: b'supportedSASLMechanisms' to rootdse
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Assert rootdse search has b'supportedSASLMechanisms' attr
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:950 Assert rootdse search has b'supportedSASLMechanisms' attr
Passed tests/suites/basic/basic_test.py::test_mod_def_rootdse_attr[vendorName] 0.01
-----------------------------Captured stderr setup------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Add the nsslapd-return-default-opattr: b'vendorName' to rootdse
-------------------------------Captured log setup-------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:80 Add the nsslapd-return-default-opattr: b'vendorName' to rootdse
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Assert rootdse search has b'vendorName' attr
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:950 Assert rootdse search has b'vendorName' attr
Passed tests/suites/basic/basic_test.py::test_mod_def_rootdse_attr[vendorVersion] 0.01
-----------------------------Captured stderr setup------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Add the nsslapd-return-default-opattr: b'vendorVersion' to rootdse
-------------------------------Captured log setup-------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:80 Add the nsslapd-return-default-opattr: b'vendorVersion' to rootdse
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test: Assert rootdse search has b'vendorVersion' attr
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:950 Assert rootdse search has b'vendorVersion' attr
Passed tests/suites/basic/basic_test.py::test_basic_anonymous_search 0.06
-----------------------------Captured stderr setup------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Adding 5 test users
-------------------------------Captured log setup-------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:968 Adding 5 test users
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Execute anonymous search with different filters
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:995 Execute anonymous search with different filters
Passed tests/suites/basic/basic_test.py::test_search_original_type 0.06
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Set nsslapd-search-return-original-type-switch to ON INFO:dirsrvtests.tests.suites.basic.basic_test:Check that ldapsearch *does* return unknown attributes INFO:dirsrvtests.tests.suites.basic.basic_test:Set nsslapd-search-return-original-type-switch to Off INFO:dirsrvtests.tests.suites.basic.basic_test:Check that ldapsearch *does not* return unknown attributes
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1022 Set nsslapd-search-return-original-type-switch to ON INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1025 Check that ldapsearch *does* return unknown attributes INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1030 Set nsslapd-search-return-original-type-switch to Off INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1032 Check that ldapsearch *does not* return unknown attributes
Passed tests/suites/basic/basic_test.py::test_search_ou 0.01
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Create a test OU without sub entries INFO:dirsrvtests.tests.suites.basic.basic_test:Search from the OU with the filter that does not match the OU, it should not return anything
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1052 Create a test OU without sub entries INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1059 Search from the OU with the filter that does not match the OU, it should not return anything
Passed tests/suites/basic/basic_test.py::test_connection_buffer_size 0.10
No log output captured.
Passed tests/suites/basic/basic_test.py::test_critical_msg_on_empty_range_idl 7.72
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Adding 20 users without "internationalISDNNumber"
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1124 Adding 20 users without "internationalISDNNumber"
Passed tests/suites/basic/basic_test.py::test_ldbm_modification_audit_log 13.53
------------------------------Captured stderr call------------------------------
INFO:dirsrvtests.tests.suites.basic.basic_test:Enable audit logging INFO:dirsrvtests.tests.suites.basic.basic_test:Set attribute nsslapd-lookthroughlimit to value 10001 INFO:dirsrvtests.tests.suites.basic.basic_test:Set attribute nsslapd-pagedidlistscanlimit to value 10001 INFO:dirsrvtests.tests.suites.basic.basic_test:Set attribute nsslapd-idlistscanlimit to value 10001 INFO:dirsrvtests.tests.suites.basic.basic_test:Set attribute nsslapd-db-locks to value 10001 INFO:dirsrvtests.tests.suites.basic.basic_test:Restart the server to flush the logs INFO:dirsrvtests.tests.suites.basic.basic_test:Check if attribute nsslapd-lookthroughlimit is replaced in the audit log INFO:dirsrvtests.tests.suites.basic.basic_test:Check if attribute nsslapd-pagedidlistscanlimit is replaced in the audit log INFO:dirsrvtests.tests.suites.basic.basic_test:Check if attribute nsslapd-idlistscanlimit is replaced in the audit log INFO:dirsrvtests.tests.suites.basic.basic_test:Check if attribute nsslapd-db-locks is replaced in the audit log
-------------------------------Captured log call--------------------------------
INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1190 Enable audit logging INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1196 Set attribute nsslapd-lookthroughlimit to value 10001 INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1196 Set attribute nsslapd-pagedidlistscanlimit to value 10001 INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1196 Set attribute nsslapd-idlistscanlimit to value 10001 INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1196 Set attribute nsslapd-db-locks to value 10001 INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1199 Restart the server to flush the logs INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1203 Check if attribute nsslapd-lookthroughlimit is replaced in the audit log INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1203 Check if attribute nsslapd-pagedidlistscanlimit is replaced in the audit log INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1203 Check if attribute nsslapd-idlistscanlimit is replaced in the audit log INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1203 Check if attribute nsslapd-db-locks is replaced in the audit log
Passed tests/suites/basic/basic_test.py::test_dscreate 12.16
------------------------------Captured stdout call------------------------------
Starting installation... Completed installation for test_dscreate
Passed tests/suites/basic/basic_test.py::test_dscreate_longname 0.00
-----------------------------Captured stdout setup------------------------------
Starting installation... Completed installation for test_longname_deadbeef_deadbeef_deadbeef_deadbeef_deadbeef
-----------------------------Captured stderr setup------------------------------
DEBUG:dirsrvtests.tests.suites.basic.basic_test:Allocate local instance <class 'lib389.DirSrv'> with ldapi://%2fvar%2frun%2fslapd-test_longname_deadbeef_deadbeef_deadbeef_deadbeef_deadbeef.socket DEBUG:dirsrvtests.tests.suites.basic.basic_test:open(): Connecting to uri ldapi://%2fvar%2frun%2fslapd-test_longname_deadbeef_deadbeef_deadbeef_deadbeef_deadbeef.socket DEBUG:dirsrvtests.tests.suites.basic.basic_test:Using dirsrv ca certificate /etc/dirsrv/slapd-test_longname_deadbeef_deadbeef_deadbeef_deadbeef_deadbeef DEBUG:dirsrvtests.tests.suites.basic.basic_test:Using external ca certificate /etc/dirsrv/slapd-test_longname_deadbeef_deadbeef_deadbeef_deadbeef_deadbeef DEBUG:dirsrvtests.tests.suites.basic.basic_test:Using external ca certificate /etc/dirsrv/slapd-test_longname_deadbeef_deadbeef_deadbeef_deadbeef_deadbeef DEBUG:dirsrvtests.tests.suites.basic.basic_test:Using certificate policy 1 DEBUG:dirsrvtests.tests.suites.basic.basic_test:ldap.OPT_X_TLS_REQUIRE_CERT = 1 DEBUG:dirsrvtests.tests.suites.basic.basic_test:open(): bound as cn=Directory Manager
-------------------------------Captured log setup-------------------------------
DEBUG  dirsrvtests.tests.suites.basic.basic_test:__init__.py:466 Allocate local instance <class 'lib389.DirSrv'> with ldapi://%2fvar%2frun%2fslapd-test_longname_deadbeef_deadbeef_deadbeef_deadbeef_deadbeef.socket DEBUG  dirsrvtests.tests.suites.basic.basic_test:__init__.py:991 open(): Connecting to uri ldapi://%2fvar%2frun%2fslapd-test_longname_deadbeef_deadbeef_deadbeef_deadbeef_deadbeef.socket DEBUG  dirsrvtests.tests.suites.basic.basic_test:__init__.py:999 Using dirsrv ca certificate /etc/dirsrv/slapd-test_longname_deadbeef_deadbeef_deadbeef_deadbeef_deadbeef DEBUG  dirsrvtests.tests.suites.basic.basic_test:__init__.py:1008 Using external ca certificate /etc/dirsrv/slapd-test_longname_deadbeef_deadbeef_deadbeef_deadbeef_deadbeef DEBUG  dirsrvtests.tests.suites.basic.basic_test:__init__.py:1021 Using external ca certificate /etc/dirsrv/slapd-test_longname_deadbeef_deadbeef_deadbeef_deadbeef_deadbeef DEBUG  dirsrvtests.tests.suites.basic.basic_test:__init__.py:1029 Using certificate policy 1 DEBUG  dirsrvtests.tests.suites.basic.basic_test:__init__.py:1030 ldap.OPT_X_TLS_REQUIRE_CERT = 1 DEBUG  dirsrvtests.tests.suites.basic.basic_test:__init__.py:1084 open(): bound as cn=Directory Manager
------------------------------Captured stderr call------------------------------
DEBUG:RootDSE: get_attr_vals('supportedControl') INFO:dirsrvtests.tests.suites.basic.basic_test:['2.16.840.1.113730.3.4.2', '2.16.840.1.113730.3.4.3', '2.16.840.1.113730.3.4.4', '2.16.840.1.113730.3.4.5', '1.2.840.113556.1.4.473', '2.16.840.1.113730.3.4.9', '2.16.840.1.113730.3.4.16', '2.16.840.1.113730.3.4.15', '2.16.840.1.113730.3.4.17', '2.16.840.1.113730.3.4.19', '1.3.6.1.1.13.1', '1.3.6.1.1.13.2', '1.3.6.1.4.1.42.2.27.8.5.1', '1.3.6.1.4.1.42.2.27.9.5.2', '1.2.840.113556.1.4.319', '1.3.6.1.4.1.42.2.27.9.5.8', '1.3.6.1.4.1.4203.666.5.16', '2.16.840.1.113730.3.4.14', '2.16.840.1.113730.3.4.20', '1.3.6.1.4.1.1466.29539.12', '2.16.840.1.113730.3.4.12', '2.16.840.1.113730.3.4.18', '2.16.840.1.113730.3.4.13']
-------------------------------Captured log call--------------------------------
DEBUG  RootDSE:_mapped_object.py:554 get_attr_vals('supportedControl') INFO  dirsrvtests.tests.suites.basic.basic_test:basic_test.py:1377 ['2.16.840.1.113730.3.4.2', '2.16.840.1.113730.3.4.3', '2.16.840.1.113730.3.4.4', '2.16.840.1.113730.3.4.5', '1.2.840.113556.1.4.473', '2.16.840.1.113730.3.4.9', '2.16.840.1.113730.3.4.16', '2.16.840.1.113730.3.4.15', '2.16.840.1.113730.3.4.17', '2.16.840.1.113730.3.4.19', '1.3.6.1.1.13.1', '1.3.6.1.1.13.2', '1.3.6.1.4.1.42.2.27.8.5.1', '1.3.6.1.4.1.42.2.27.9.5.2', '1.2.840.113556.1.4.319', '1.3.6.1.4.1.42.2.27.9.5.8', '1.3.6.1.4.1.4203.666.5.16', '2.16.840.1.113730.3.4.14', '2.16.840.1.113730.3.4.20', '1.3.6.1.4.1.1466.29539.12', '2.16.840.1.113730.3.4.12', '2.16.840.1.113730.3.4.18', '2.16.840.1.113730.3.4.13']