Return-Path: Delivered-To: apmail-incubator-couchdb-commits-archive@locus.apache.org Received: (qmail 86537 invoked from network); 15 Jun 2008 13:48:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Jun 2008 13:48:54 -0000 Received: (qmail 90620 invoked by uid 500); 15 Jun 2008 13:48:56 -0000 Delivered-To: apmail-incubator-couchdb-commits-archive@incubator.apache.org Received: (qmail 90603 invoked by uid 500); 15 Jun 2008 13:48:56 -0000 Mailing-List: contact couchdb-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: couchdb-dev@incubator.apache.org Delivered-To: mailing list couchdb-commits@incubator.apache.org Received: (qmail 90594 invoked by uid 99); 15 Jun 2008 13:48:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Jun 2008 06:48:56 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Jun 2008 13:48:14 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5F8AB2388A06; Sun, 15 Jun 2008 06:48:02 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r667960 - in /incubator/couchdb/branches/runtimeconfig: src/couchdb/test/couch_config_writer_test.erl test/ test/Makefile test/erl_crash.dump test/test.ini test/test_runner.beam test/test_runner.erl Date: Sun, 15 Jun 2008 13:48:01 -0000 To: couchdb-commits@incubator.apache.org From: jan@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080615134802.5F8AB2388A06@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jan Date: Sun Jun 15 06:48:01 2008 New Revision: 667960 URL: http://svn.apache.org/viewvc?rev=667960&view=rev Log: Add test runner and tests for couch_config_writer Added: incubator/couchdb/branches/runtimeconfig/src/couchdb/test/couch_config_writer_test.erl incubator/couchdb/branches/runtimeconfig/test/ incubator/couchdb/branches/runtimeconfig/test/Makefile incubator/couchdb/branches/runtimeconfig/test/erl_crash.dump incubator/couchdb/branches/runtimeconfig/test/test.ini incubator/couchdb/branches/runtimeconfig/test/test_runner.beam (with props) incubator/couchdb/branches/runtimeconfig/test/test_runner.erl Added: incubator/couchdb/branches/runtimeconfig/src/couchdb/test/couch_config_writer_test.erl URL: http://svn.apache.org/viewvc/incubator/couchdb/branches/runtimeconfig/src/couchdb/test/couch_config_writer_test.erl?rev=667960&view=auto ============================================================================== --- incubator/couchdb/branches/runtimeconfig/src/couchdb/test/couch_config_writer_test.erl (added) +++ incubator/couchdb/branches/runtimeconfig/src/couchdb/test/couch_config_writer_test.erl Sun Jun 15 06:48:01 2008 @@ -0,0 +1,181 @@ +% couch_config_writer module test suote + +% Set up test suite +% ?MODULE_test() returns a list of functions +% that run the actual tests. +couch_config_writer_test() -> + [ + fun() -> replace_existing_variable() end, + fun() -> append_new_variable() end +%% fun() -> append_new_module() end %not yet implemented + ]. + + +% test functions +replace_existing_variable() -> + % create file + Contents = "; etc/couchdb/couch.ini.tpl. Generated from couch.ini.tpl.in by configure. + +[CouchDB] +RootDirectory=/Users/jan/Work/runcouch/conf9/var/lib/couchdb +UtilDriverDir=/Users/jan/Work/runcouch/conf9/lib/couchdb/erlang/lib/couch-0.7.3a663206/priv/lib +MaximumDocumentSize=4294967296 ; 4 GB + +[HTTPd] +Port=5984 +BindAddress=127.0.0.1 +DocumentRoot=/Users/jan/Work/runcouch/conf9/share/couchdb/www + +[Log] +File=/Users/jan/Work/runcouch/conf9/var/log/couchdb/couch.log +Level=info + +[CouchDB Query Servers] +javascript=/Users/jan/Work/runcouch/conf9/bin/couchjs /Users/jan/Work/runcouch/conf9/share/couchdb/server/main.js + +[CouchDB Query Server Options] +QueryTimeout=5000 ; 5 seconds +", + + Expect = "; etc/couchdb/couch.ini.tpl. Generated from couch.ini.tpl.in by configure. + +[CouchDB] +RootDirectory=/Users/jan/Work/runcouch/conf9/var/lib/couchdb +UtilDriverDir=/Users/jan/Work/runcouch/conf9/lib/couchdb/erlang/lib/couch-0.7.3a663206/priv/lib +MaximumDocumentSize=4294967296 ; 4 GB + +[HTTPd] +Port=5985 +BindAddress=127.0.0.1 +DocumentRoot=/Users/jan/Work/runcouch/conf9/share/couchdb/www + +[Log] +File=/Users/jan/Work/runcouch/conf9/var/log/couchdb/couch.log +Level=info + +[CouchDB Query Servers] +javascript=/Users/jan/Work/runcouch/conf9/bin/couchjs /Users/jan/Work/runcouch/conf9/share/couchdb/server/main.js + +[CouchDB Query Server Options] +QueryTimeout=5000 ; 5 seconds +", + run_operation_and_compare_results(Contents, Expect, {{"HTTPd", "Port"}, "5985"}). + + +append_new_variable() -> + % create file + Contents = "; etc/couchdb/couch.ini.tpl. Generated from couch.ini.tpl.in by configure. + +[CouchDB] +RootDirectory=/Users/jan/Work/runcouch/conf9/var/lib/couchdb +UtilDriverDir=/Users/jan/Work/runcouch/conf9/lib/couchdb/erlang/lib/couch-0.7.3a663206/priv/lib +MaximumDocumentSize=4294967296 ; 4 GB + +[HTTPd] +Port=5984 +BindAddress=127.0.0.1 +DocumentRoot=/Users/jan/Work/runcouch/conf9/share/couchdb/www + +[Log] +File=/Users/jan/Work/runcouch/conf9/var/log/couchdb/couch.log +Level=info + +[CouchDB Query Servers] +javascript=/Users/jan/Work/runcouch/conf9/bin/couchjs /Users/jan/Work/runcouch/conf9/share/couchdb/server/main.js + +[CouchDB Query Server Options] +QueryTimeout=5000 ; 5 seconds +", + + Expect = "; etc/couchdb/couch.ini.tpl. Generated from couch.ini.tpl.in by configure. + +[CouchDB] +RootDirectory=/Users/jan/Work/runcouch/conf9/var/lib/couchdb +UtilDriverDir=/Users/jan/Work/runcouch/conf9/lib/couchdb/erlang/lib/couch-0.7.3a663206/priv/lib +MaximumDocumentSize=4294967296 ; 4 GB + +[HTTPd] +Port=5984 +BindAddress=127.0.0.1 +DocumentRoot=/Users/jan/Work/runcouch/conf9/share/couchdb/www + +FantasyConfiguration=Citation Needed +[Log] +File=/Users/jan/Work/runcouch/conf9/var/log/couchdb/couch.log +Level=info + +[CouchDB Query Servers] +javascript=/Users/jan/Work/runcouch/conf9/bin/couchjs /Users/jan/Work/runcouch/conf9/share/couchdb/server/main.js + +[CouchDB Query Server Options] +QueryTimeout=5000 ; 5 seconds +", + run_operation_and_compare_results(Contents, Expect, {{"HTTPd", "FantasyConfiguration"}, "Citation Needed"}). + + +append_new_module() -> + % create file + Contents = "; etc/couchdb/couch.ini.tpl. Generated from couch.ini.tpl.in by configure. + +[CouchDB] +RootDirectory=/Users/jan/Work/runcouch/conf9/var/lib/couchdb +UtilDriverDir=/Users/jan/Work/runcouch/conf9/lib/couchdb/erlang/lib/couch-0.7.3a663206/priv/lib +MaximumDocumentSize=4294967296 ; 4 GB + +[HTTPd] +Port=5984 +BindAddress=127.0.0.1 +DocumentRoot=/Users/jan/Work/runcouch/conf9/share/couchdb/www + +[Log] +File=/Users/jan/Work/runcouch/conf9/var/log/couchdb/couch.log +Level=info + +[CouchDB Query Servers] +javascript=/Users/jan/Work/runcouch/conf9/bin/couchjs /Users/jan/Work/runcouch/conf9/share/couchdb/server/main.js + +[CouchDB Query Server Options] +QueryTimeout=5000 ; 5 seconds +", + + Expect = "; etc/couchdb/couch.ini.tpl. Generated from couch.ini.tpl.in by configure. + +[CouchDB] +RootDirectory=/Users/jan/Work/runcouch/conf9/var/lib/couchdb +UtilDriverDir=/Users/jan/Work/runcouch/conf9/lib/couchdb/erlang/lib/couch-0.7.3a663206/priv/lib +MaximumDocumentSize=4294967296 ; 4 GB + +[HTTPd] +Port=5984 +BindAddress=127.0.0.1 +DocumentRoot=/Users/jan/Work/runcouch/conf9/share/couchdb/www + +[Log] +File=/Users/jan/Work/runcouch/conf9/var/log/couchdb/couch.log +Level=info + +[CouchDB Query Servers] +javascript=/Users/jan/Work/runcouch/conf9/bin/couchjs /Users/jan/Work/runcouch/conf9/share/couchdb/server/main.js + +[CouchDB Query Server Options] +QueryTimeout=5000 ; 5 seconds + +[Erlang] +Option=Value", + run_operation_and_compare_results(Contents, Expect, {{"Erlang", "Option"}, "Value"}). + +run_operation_and_compare_results(Contents, Expect, Config) -> + Filename = "test.ini", + file:write_file(Filename, Contents), + + % call replace function + couch_config_writer:save_config(Config, Filename), + + % compare new file with expected file + {ok, Result_} = file:read_file(Filename), + Result = binary_to_list(Result_), + + % clean up + % file:delete(Filename), + + Result = Expect. Added: incubator/couchdb/branches/runtimeconfig/test/Makefile URL: http://svn.apache.org/viewvc/incubator/couchdb/branches/runtimeconfig/test/Makefile?rev=667960&view=auto ============================================================================== --- incubator/couchdb/branches/runtimeconfig/test/Makefile (added) +++ incubator/couchdb/branches/runtimeconfig/test/Makefile Sun Jun 15 06:48:01 2008 @@ -0,0 +1,6 @@ +# depends on ../src/*/*.beam and ../src/couchdb/test/*.beam +test: test_runner.beam + @erl -noshell -pa ../src/couchdb -pa ../src/mochiweb -eval "test_runner:run()" + +%.beam: %.erl + erlc $< \ No newline at end of file Added: incubator/couchdb/branches/runtimeconfig/test/erl_crash.dump URL: http://svn.apache.org/viewvc/incubator/couchdb/branches/runtimeconfig/test/erl_crash.dump?rev=667960&view=auto ============================================================================== --- incubator/couchdb/branches/runtimeconfig/test/erl_crash.dump (added) +++ incubator/couchdb/branches/runtimeconfig/test/erl_crash.dump Sun Jun 15 06:48:01 2008 @@ -0,0 +1,12238 @@ +=erl_crash_dump:0.1 +Sun Jun 15 14:05:12 2008 +Slogan: init terminating in do_boot () +System version: Erlang (BEAM) emulator version 5.6 [source] [smp:2] [async-threads:0] [hipe] [kernel-poll:false] +Compiled: Sat Apr 12 14:27:41 2008 +Atoms: 5144 +=memory +total: 2598905 +processes: 290934 +processes_used: 281950 +system: 2307971 +atom: 234353 +atom_used: 221495 +binary: 347 +code: 1471096 +ets: 99624 +=hash_table:atom_tab +size: 4813 +used: 3169 +objs: 5144 +depth: 7 +=index_table:atom_tab +size: 6144 +limit: 1048576 +entries: 5144 +=hash_table:module_code +size: 97 +used: 48 +objs: 62 +depth: 3 +=index_table:module_code +size: 1024 +limit: 65536 +entries: 62 +=hash_table:export_list +size: 1597 +used: 1175 +objs: 2155 +depth: 8 +=index_table:export_list +size: 3072 +limit: 65536 +entries: 2155 +=hash_table:secondary_export_table +size: 97 +used: 0 +objs: 0 +depth: 0 +=hash_table:process_reg +size: 11 +used: 8 +objs: 13 +depth: 3 +=hash_table:fun_table +size: 397 +used: 243 +objs: 375 +depth: 4 +=hash_table:node_table +size: 11 +used: 1 +objs: 1 +depth: 1 +=hash_table:dist_table +size: 11 +used: 1 +objs: 1 +depth: 1 +=allocated_areas +processes: 281950 290934 +ets: 99624 +sys_misc: 18269 +static: 483328 +atom_space: 65544 53070 +binary: 347 +atom_table: 43909 +module_table: 4568 +export_table: 18760 +register_table: 108 +fun_table: 1650 +module_refs: 1024 +loaded_code: 1317566 +dist_table: 175 +node_table: 131 +bits_bufs_size: 0 +bif_timer: 40100 +link_lh: 0 +proc: 15396 7716 +atom_entry: 124900 124516 +export_entry: 104140 103900 +module_entry: 3244 2524 +reg_proc: 512 344 +monitor_sh: 832 32 +nlink_sh: 1480 1144 +proc_list: 28 28 +fun_entry: 21384 21104 +db_tab: 4512 3168 +driver_event_data_state: 28 28 +driver_select_data_state: 352 48 +=allocator:sys_alloc +option e: true +option m: libc +=allocator:temp_alloc +versions: 2.1 2.1 +option e: true +option sbct: 524288 +option asbcst: 4145152 +option rsbcst: 90 +option rsbcmt: 80 +option mmbcs: 262144 +option mmsbc: 256 +option mmmbc: 10 +option lmbcs: 5242880 +option smbcs: 1048576 +option mbcgs: 10 +option mbsd: 3 +option as: gf +mbcs blocks: 0 290 290 +mbcs blocks size: 0 66712 66712 +mbcs carriers: 1 1 1 +mbcs mseg carriers: 0 +mbcs sys_alloc carriers: 1 +mbcs carriers size: 262176 262176 262176 +mbcs mseg carriers size: 0 +mbcs sys_alloc carriers size: 262176 +sbcs blocks: 0 0 0 +sbcs blocks size: 0 0 0 +sbcs carriers: 0 0 0 +sbcs mseg carriers: 0 +sbcs sys_alloc carriers: 0 +sbcs carriers size: 0 0 0 +sbcs mseg carriers size: 0 +sbcs sys_alloc carriers size: 0 +temp_alloc calls: 9380 +temp_free calls: 9380 +temp_realloc calls: 15 +mseg_alloc calls: 0 +mseg_dealloc calls: 0 +mseg_realloc calls: 0 +sys_alloc calls: 1 +sys_free calls: 0 +sys_realloc calls: 0 +=allocator:sl_alloc +versions: 2.1 2.1 +option e: true +option sbct: 524288 +option asbcst: 4145152 +option rsbcst: 80 +option rsbcmt: 80 +option mmbcs: 131072 +option mmsbc: 256 +option mmmbc: 10 +option lmbcs: 5242880 +option smbcs: 1048576 +option mbcgs: 10 +option mbsd: 3 +option as: gf +mbcs blocks: 0 0 0 +mbcs blocks size: 0 0 0 +mbcs carriers: 1 1 1 +mbcs mseg carriers: 0 +mbcs sys_alloc carriers: 1 +mbcs carriers size: 131104 131104 131104 +mbcs mseg carriers size: 0 +mbcs sys_alloc carriers size: 131104 +sbcs blocks: 0 0 0 +sbcs blocks size: 0 0 0 +sbcs carriers: 0 0 0 +sbcs mseg carriers: 0 +sbcs sys_alloc carriers: 0 +sbcs carriers size: 0 0 0 +sbcs mseg carriers size: 0 +sbcs sys_alloc carriers size: 0 +sl_alloc calls: 0 +sl_free calls: 0 +sl_realloc calls: 0 +mseg_alloc calls: 0 +mseg_dealloc calls: 0 +mseg_realloc calls: 0 +sys_alloc calls: 1 +sys_free calls: 0 +sys_realloc calls: 0 +=allocator:std_alloc +versions: 0.9 2.1 +option e: true +option sbct: 524288 +option asbcst: 4145152 +option rsbcst: 20 +option rsbcmt: 80 +option mmbcs: 131072 +option mmsbc: 256 +option mmmbc: 10 +option lmbcs: 5242880 +option smbcs: 1048576 +option mbcgs: 10 +option as: bf +mbcs blocks: 127 128 128 +mbcs blocks size: 7424 8056 8056 +mbcs carriers: 1 1 1 +mbcs mseg carriers: 0 +mbcs sys_alloc carriers: 1 +mbcs carriers size: 131104 131104 131104 +mbcs mseg carriers size: 0 +mbcs sys_alloc carriers size: 131104 +sbcs blocks: 0 0 0 +sbcs blocks size: 0 0 0 +sbcs carriers: 0 0 0 +sbcs mseg carriers: 0 +sbcs sys_alloc carriers: 0 +sbcs carriers size: 0 0 0 +sbcs mseg carriers size: 0 +sbcs sys_alloc carriers size: 0 +std_alloc calls: 219 +std_free calls: 92 +std_realloc calls: 0 +mseg_alloc calls: 0 +mseg_dealloc calls: 0 +mseg_realloc calls: 0 +sys_alloc calls: 1 +sys_free calls: 0 +sys_realloc calls: 0 +=allocator:ll_alloc +versions: 0.9 2.1 +option e: true +option sbct: 4294967295 +option asbcst: 0 +option rsbcst: 0 +option rsbcmt: 0 +option mmbcs: 2097152 +option mmsbc: 0 +option mmmbc: 0 +option lmbcs: 5242880 +option smbcs: 1048576 +option mbcgs: 10 +option as: aobf +mbcs blocks: 514 514 514 +mbcs blocks size: 2450248 2456416 2456416 +mbcs carriers: 2 2 2 +mbcs mseg carriers: 0 +mbcs sys_alloc carriers: 2 +mbcs carriers size: 3145760 3145760 3145760 +mbcs mseg carriers size: 0 +mbcs sys_alloc carriers size: 3145760 +sbcs blocks: 0 0 0 +sbcs blocks size: 0 0 0 +sbcs carriers: 0 0 0 +sbcs mseg carriers: 0 +sbcs sys_alloc carriers: 0 +sbcs carriers size: 0 0 0 +sbcs mseg carriers size: 0 +sbcs sys_alloc carriers size: 0 +ll_alloc calls: 520 +ll_free calls: 6 +ll_realloc calls: 142 +mseg_alloc calls: 0 +mseg_dealloc calls: 0 +mseg_realloc calls: 0 +sys_alloc calls: 2 +sys_free calls: 0 +sys_realloc calls: 0 +=allocator:eheap_alloc +versions: 2.1 2.1 +option e: true +option sbct: 524288 +option asbcst: 4145152 +option rsbcst: 50 +option rsbcmt: 80 +option mmbcs: 524288 +option mmsbc: 256 +option mmmbc: 10 +option lmbcs: 5242880 +option smbcs: 1048576 +option mbcgs: 10 +option mbsd: 3 +option as: gf +mbcs blocks: 26 108 108 +mbcs blocks size: 142304 269408 269408 +mbcs carriers: 1 1 1 +mbcs mseg carriers: 0 +mbcs sys_alloc carriers: 1 +mbcs carriers size: 524320 524320 524320 +mbcs mseg carriers size: 0 +mbcs sys_alloc carriers size: 524320 +sbcs blocks: 0 0 0 +sbcs blocks size: 0 0 0 +sbcs carriers: 0 0 0 +sbcs mseg carriers: 0 +sbcs sys_alloc carriers: 0 +sbcs carriers size: 0 0 0 +sbcs mseg carriers size: 0 +sbcs sys_alloc carriers size: 0 +eheap_alloc calls: 470 +eheap_free calls: 444 +eheap_realloc calls: 18 +mseg_alloc calls: 0 +mseg_dealloc calls: 0 +mseg_realloc calls: 0 +sys_alloc calls: 1 +sys_free calls: 0 +sys_realloc calls: 0 +=allocator:binary_alloc +versions: 0.9 2.1 +option e: true +option sbct: 524288 +option asbcst: 4145152 +option rsbcst: 20 +option rsbcmt: 80 +option mmbcs: 131072 +option mmsbc: 256 +option mmmbc: 10 +option lmbcs: 5242880 +option smbcs: 1048576 +option mbcgs: 10 +option as: bf +mbcs blocks: 4 17 17 +mbcs blocks size: 384 286136 286136 +mbcs carriers: 1 2 2 +mbcs mseg carriers: 0 +mbcs sys_alloc carriers: 1 +mbcs carriers size: 131104 1179680 1179680 +mbcs mseg carriers size: 0 +mbcs sys_alloc carriers size: 131104 +sbcs blocks: 0 0 0 +sbcs blocks size: 0 0 0 +sbcs carriers: 0 0 0 +sbcs mseg carriers: 0 +sbcs sys_alloc carriers: 0 +sbcs carriers size: 0 0 0 +sbcs mseg carriers size: 0 +sbcs sys_alloc carriers size: 0 +binary_alloc calls: 434 +binary_free calls: 430 +binary_realloc calls: 0 +mseg_alloc calls: 5 +mseg_dealloc calls: 5 +mseg_realloc calls: 0 +sys_alloc calls: 1 +sys_free calls: 0 +sys_realloc calls: 0 +=allocator:ets_alloc +versions: 0.9 2.1 +option e: true +option sbct: 524288 +option asbcst: 4145152 +option rsbcst: 20 +option rsbcmt: 80 +option mmbcs: 131072 +option mmsbc: 256 +option mmmbc: 10 +option lmbcs: 5242880 +option smbcs: 1048576 +option mbcgs: 10 +option as: bf +mbcs blocks: 370 370 370 +mbcs blocks size: 82760 82760 82760 +mbcs carriers: 1 1 1 +mbcs mseg carriers: 0 +mbcs sys_alloc carriers: 1 +mbcs carriers size: 131104 131104 131104 +mbcs mseg carriers size: 0 +mbcs sys_alloc carriers size: 131104 +sbcs blocks: 0 0 0 +sbcs blocks size: 0 0 0 +sbcs carriers: 0 0 0 +sbcs mseg carriers: 0 +sbcs sys_alloc carriers: 0 +sbcs carriers size: 0 0 0 +sbcs mseg carriers size: 0 +sbcs sys_alloc carriers size: 0 +ets_alloc calls: 370 +ets_free calls: 0 +ets_realloc calls: 4 +mseg_alloc calls: 0 +mseg_dealloc calls: 0 +mseg_realloc calls: 0 +sys_alloc calls: 1 +sys_free calls: 0 +sys_realloc calls: 0 +=allocator:fix_alloc +option e: true +proc: 15396 7716 +atom_entry: 124900 124516 +export_entry: 104140 103900 +module_entry: 3244 2524 +reg_proc: 512 344 +monitor_sh: 832 32 +nlink_sh: 1480 1144 +proc_list: 28 28 +fun_entry: 21384 21104 +db_tab: 4512 3168 +driver_event_data_state: 28 28 +driver_select_data_state: 352 48 +=allocator:mseg_alloc +version: 0.9 +option amcbf: 4194304 +option rmcbf: 20 +option mcs: 5 +option cci: 1000 +cached_segments: 1 +cache_hits: 4 +segments: 0 +segments_watermark: 1 +mseg_alloc calls: 5 +mseg_dealloc calls: 5 +mseg_realloc calls: 0 +mseg_create calls: 1 +mseg_destroy calls: 0 +mseg_clear_cache calls: 0 +mseg_check_cache calls: 0 +=allocator:alloc_util +option mmc: 1024 +option ycs: 1048576 +=allocator:instr +option m: false +option s: false +option t: false +=proc:<0.0.0> +State: Running +Name: init +Spawned as: otp_ring0:start/2 +Spawned by: [] +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.2.0>, <0.5.0>, <0.4.0>] +Reductions: 3476 +Stack+heap: 1597 +OldHeap: 610 +Heap unused: 752 +OldHeap unused: 610 +Program counter: 0x004ecda8 (init:boot_loop/2 + 32) +CP: 0x004ecba4 (init:things_to_string/1 + 68) +=proc:<0.2.0> +State: Waiting +Name: erl_prim_loader +Spawned as: erlang:apply/2 +Spawned by: <0.1.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.0.0>, #Port<0.1>] +Reductions: 78461 +Stack+heap: 2584 +OldHeap: 1597 +Heap unused: 134 +OldHeap unused: 1597 +Program counter: 0x005092d0 (erl_prim_loader:loop/3 + 88) +CP: 0x00177dec () +arity = 0 +=proc:<0.4.0> +State: Waiting +Name: error_logger +Spawned as: proc_lib:init_p/5 +Spawned by: <0.1.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.21.0>, <0.0.0>] +Reductions: 277 +Stack+heap: 987 +OldHeap: 377 +Heap unused: 576 +OldHeap unused: 377 +Program counter: 0x005c61d0 (code_server:call/2 + 72) +CP: 0x005191b0 (error_handler:undefined_function/3 + 40) +arity = 0 +=proc:<0.5.0> +State: Waiting +Name: application_controller +Spawned as: erlang:apply/2 +Spawned by: <0.1.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.0.0>, <0.7.0>] +Reductions: 495 +Stack+heap: 1597 +OldHeap: 987 +Heap unused: 424 +OldHeap unused: 987 +Program counter: 0x0054ebcc (gen_server:loop/6 + 52) +CP: 0x00177dec () +arity = 0 +=proc:<0.7.0> +State: Waiting +Spawned as: proc_lib:init_p/5 +Spawned by: <0.6.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.8.0>, <0.5.0>] +Reductions: 45 +Stack+heap: 377 +OldHeap: 0 +Heap unused: 101 +OldHeap unused: 0 +Program counter: 0x00558810 (application_master:main_loop/2 + 28) +CP: 0x00528de4 (proc_lib:init_p/5 + 200) +arity = 0 +=proc:<0.8.0> +State: Waiting +Spawned as: application_master:start_it/4 +Spawned by: <0.7.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.9.0>, <0.7.0>] +Reductions: 91 +Stack+heap: 233 +OldHeap: 0 +Heap unused: 75 +OldHeap unused: 0 +Program counter: 0x00559bc8 (application_master:loop_it/4 + 40) +CP: 0x00177dec () +arity = 0 +=proc:<0.9.0> +State: Waiting +Name: kernel_sup +Spawned as: proc_lib:init_p/5 +Spawned by: <0.8.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.8.0>, <0.11.0>, <0.10.0>, <0.17.0>, <0.19.0>, <0.18.0>, <0.23.0>, <0.22.0>, <0.20.0>, <0.15.0>] +Reductions: 1306 +Stack+heap: 610 +OldHeap: 377 +Heap unused: 430 +OldHeap unused: 377 +Program counter: 0x0054ebcc (gen_server:loop/6 + 52) +CP: 0x00528de4 (proc_lib:init_p/5 + 200) +arity = 0 +=proc:<0.10.0> +State: Waiting +Name: rex +Spawned as: proc_lib:init_p/5 +Spawned by: <0.9.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.9.0>] +Reductions: 44 +Stack+heap: 233 +OldHeap: 0 +Heap unused: 161 +OldHeap unused: 0 +Program counter: 0x0054ebcc (gen_server:loop/6 + 52) +CP: 0x00528de4 (proc_lib:init_p/5 + 200) +arity = 0 +=proc:<0.11.0> +State: Waiting +Name: global_name_server +Spawned as: proc_lib:init_p/5 +Spawned by: <0.9.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.9.0>, <0.14.0>, <0.13.0>, <0.12.0>] +Reductions: 64 +Stack+heap: 233 +OldHeap: 0 +Heap unused: 88 +OldHeap unused: 0 +Program counter: 0x0054ebcc (gen_server:loop/6 + 52) +CP: 0x00528de4 (proc_lib:init_p/5 + 200) +arity = 0 +=proc:<0.12.0> +State: Waiting +Spawned as: erlang:apply/2 +Spawned by: <0.11.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.11.0>] +Reductions: 25 +Stack+heap: 233 +OldHeap: 0 +Heap unused: 171 +OldHeap unused: 0 +Program counter: 0x0057aa28 (global:loop_the_locker/1 + 684) +CP: 0x0057a75c (global:init_the_locker/1 + 192) +arity = 0 +=proc:<0.13.0> +State: Waiting +Spawned as: erlang:apply/2 +Spawned by: <0.11.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.11.0>] +Reductions: 4 +Stack+heap: 233 +OldHeap: 0 +Heap unused: 221 +OldHeap unused: 0 +Program counter: 0x0057ee58 (global:collect_deletions/2 + 76) +CP: 0x0057edd8 (global:loop_the_deleter/1 + 36) +arity = 0 +=proc:<0.14.0> +State: Waiting +Spawned as: erlang:apply/2 +Spawned by: <0.11.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.11.0>] +Reductions: 3 +Stack+heap: 233 +OldHeap: 0 +Heap unused: 222 +OldHeap unused: 0 +Program counter: 0x0057ef78 (global:loop_the_registrar/0 + 12) +CP: 0x00177dec () +arity = 0 +=proc:<0.15.0> +State: Waiting +Name: inet_db +Spawned as: proc_lib:init_p/5 +Spawned by: <0.9.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.9.0>] +Reductions: 144 +Stack+heap: 233 +OldHeap: 0 +Heap unused: 166 +OldHeap unused: 0 +Program counter: 0x0054ebcc (gen_server:loop/6 + 52) +CP: 0x00528de4 (proc_lib:init_p/5 + 200) +arity = 0 +=proc:<0.17.0> +State: Waiting +Name: global_group +Spawned as: proc_lib:init_p/5 +Spawned by: <0.9.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.9.0>] +Reductions: 73 +Stack+heap: 233 +OldHeap: 0 +Heap unused: 112 +OldHeap unused: 0 +Program counter: 0x0054ebcc (gen_server:loop/6 + 52) +CP: 0x00528de4 (proc_lib:init_p/5 + 200) +arity = 0 +=proc:<0.18.0> +State: Waiting +Name: file_server_2 +Spawned as: proc_lib:init_p/5 +Spawned by: <0.9.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [#Port<0.4>, <0.9.0>] +Reductions: 99 +Stack+heap: 377 +OldHeap: 0 +Heap unused: 237 +OldHeap unused: 0 +Program counter: 0x0054ebcc (gen_server:loop/6 + 52) +CP: 0x00528de4 (proc_lib:init_p/5 + 200) +arity = 0 +=proc:<0.19.0> +State: Scheduled +Name: code_server +Spawned as: erlang:apply/2 +Spawned by: <0.9.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 1 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.9.0>] +Reductions: 76673 +Stack+heap: 2584 +OldHeap: 17711 +Heap unused: 2129 +OldHeap unused: 17711 +Program counter: 0x005c62bc (code_server:loop/1 + 64) +CP: 0x00177dec () +arity = 0 +=proc:<0.20.0> +State: Waiting +Spawned as: proc_lib:init_p/5 +Spawned by: <0.9.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.21.0>, <0.9.0>] +Reductions: 97 +Stack+heap: 610 +OldHeap: 0 +Heap unused: 324 +OldHeap unused: 0 +Program counter: 0x0054ebcc (gen_server:loop/6 + 52) +CP: 0x00528de4 (proc_lib:init_p/5 + 200) +arity = 0 +=proc:<0.21.0> +State: Waiting +Name: user +Spawned as: user:server/2 +Spawned by: <0.20.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [#Port<0.71>, <0.20.0>, <0.4.0>] +Reductions: 28 +Stack+heap: 233 +OldHeap: 0 +Heap unused: 188 +OldHeap unused: 0 +Program counter: 0x005f02a4 (user:server_loop/2 + 32) +CP: 0x00177dec () +arity = 0 +=proc:<0.22.0> +State: Waiting +Spawned as: proc_lib:init_p/5 +Spawned by: <0.9.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.9.0>] +Reductions: 45 +Stack+heap: 233 +OldHeap: 0 +Heap unused: 155 +OldHeap unused: 0 +Program counter: 0x0054ebcc (gen_server:loop/6 + 52) +CP: 0x00528de4 (proc_lib:init_p/5 + 200) +arity = 0 +=proc:<0.23.0> +State: Waiting +Name: kernel_safe_sup +Spawned as: proc_lib:init_p/5 +Spawned by: <0.9.0> +Started: Sun Jun 15 14:05:12 2008 +Message queue length: 0 +Number of heap fragments: 0 +Heap fragment data: 0 +Link list: [<0.9.0>] +Reductions: 61 +Stack+heap: 233 +OldHeap: 0 +Heap unused: 102 +OldHeap unused: 0 +Program counter: 0x0054ebcc (gen_server:loop/6 + 52) +CP: 0x00528de4 (proc_lib:init_p/5 + 200) +arity = 0 +=port:#Port<0.1> +Slot: 1 +Connected: <0.2.0> +Links: <0.2.0> +Port controls linked-in driver: efile +=port:#Port<0.4> +Slot: 4 +Connected: <0.18.0> +Links: <0.18.0> +Port controls linked-in driver: efile +=port:#Port<0.71> +Slot: 71 +Connected: <0.21.0> +Links: <0.21.0> +Port is UNIX fd not opened by emulator: 0/1 +=ets:<0.19.0> +Slot: 11 +Table: 11 +Name: code +Buckets: 256 +Objects: 248 +Words: 10082 +=ets:<0.19.0> +Slot: 12 +Table: 12 +Name: code_names +Buckets: 256 +Objects: 55 +Words: 6001 +=ets:<0.11.0> +Slot: 371 +Table: global_pid_names +Name: global_pid_names +Buckets: 256 +Objects: 0 +Words: 312 +=ets:<0.11.0> +Slot: 377 +Table: global_names +Name: global_names +Buckets: 256 +Objects: 0 +Words: 312 +=ets:<0.11.0> +Slot: 383 +Table: global_locks +Name: global_locks +Buckets: 256 +Objects: 0 +Words: 312 +=ets:<0.11.0> +Slot: 384 +Table: global_names_ext +Name: global_names_ext +Buckets: 256 +Objects: 0 +Words: 312 +=ets:<0.11.0> +Slot: 385 +Table: global_pid_ids +Name: global_pid_ids +Buckets: 256 +Objects: 0 +Words: 312 +=ets:<0.15.0> +Slot: 705 +Table: inet_cache +Name: inet_cache +Buckets: 256 +Objects: 0 +Words: 312 +=ets:<0.18.0> +Slot: 1181 +Table: file_io_servers +Name: file_io_servers +Buckets: 256 +Objects: 0 +Words: 312 +=ets:<0.15.0> +Slot: 1512 +Table: inet_hosts +Name: inet_hosts +Buckets: 256 +Objects: 0 +Words: 312 +=ets:<0.15.0> +Slot: 1515 +Table: inet_db +Name: inet_db +Buckets: 256 +Objects: 21 +Words: 585 +=ets:<0.5.0> +Slot: 1826 +Table: ac_tab +Name: ac_tab +Buckets: 256 +Objects: 6 +Words: 880 +=timer:<0.15.0> +Message: refresh_timeout +Time left: 3599844 ms +=node:'nonode@nohost' +=no_distribution +=loaded_modules +Current code: 1317566 +Old code: 0 +=mod:otp_ring0 +Current size: 620 +=mod:init +Current size: 31160 +=mod:prim_inet +Current size: 50792 +=mod:prim_file +Current size: 21953 +=mod:erl_prim_loader +Current size: 22112 +=mod:erlang +Current size: 13316 +=mod:error_handler +Current size: 2181 +Current attributes: 836C00000001680264000376736E6C000000016E100034512C1BAF60246BE786569C912921136A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61206802640006736F757263656B00442F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F6572726F725F68616E646C65722E65726C6A +=mod:heart +Current size: 6761 +Current attributes: 836C00000001680264000376736E6C000000016E1000BC29771F25E73FAD2B29973D0520F8F06A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61296802640006736F757263656B003C2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F68656172742E65726C6A +=mod:error_logger +Current size: 6556 +Current attributes: 836C00000001680264000376736E6C000000016E1000A94DF8FE09D0FD62245D136066810C226A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61216802640006736F757263656B00432F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F6572726F725F6C6F676765722E65726C6A +=mod:gen_event +Current size: 23205 +Current attributes: 836C00000001680264000376736E6C000000016E1000CE5D78D4BD0C64FBBBA5755389AC06BE6A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C6129612F6802640006736F757263656B00402F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F67656E5F6576656E742E65726C6A +=mod:gen +Current size: 6723 +Current attributes: 836C00000001680264000376736E6C000000016E10001FD7BEC4AA9DF013FB48BC75305F4FF16A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C6129612E6802640006736F757263656B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F67656E2E65726C6A +=mod:proc_lib +Current size: 13896 +Current attributes: 836C00000001680264000376736E6C000000016E1000C28748D7F909870368AC013CCB565C1D6A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C6129613B6802640006736F757263656B003F2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F70726F635F6C69622E65726C6A +=mod:application_controller +Current size: 55818 +Current attributes: 836C00000001680264000376736E6C000000016E1000FEA9372B844593E4F65E767A844F2A396A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61126802640006736F757263656B004D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F6170706C69636174696F6E5F636F6E74726F6C6C65722E65726C6A +=mod:lists +Current size: 58305 +Current attributes: 836C00000001680264000376736E6C000000016E10000B6E445B1819F75CA0775775CB030B546A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000E6802640006696E6C696E656C0000000468026400096D65726765335F3132610768026400096D65726765335F32316107680264000A726D65726765335F31326107680264000A726D65726765335F323161076A6802640006696E6C696E656C00000004680264000A756D65726765335F31326108680264000A756D65726765335F32316108680264000C72756D65726765335F3132616107680264000C72756D65726765335F31326261086A6802640006696E6C696E656C00000004680264000C6B65796D65726765335F3132610C680264000C6B65796D65726765335F3231610C680264000D726B65796D65726765335F3132610C680264000D726B65796D65726765335F3231610C6A6802640006696E6C696E656C00000006680264000D756B65796D65726765335F3132610D680264000D756B65796D65726765335F3231610D680264000F72756B65796D65726765335F313261610B680264000F72756B65796D65726765335F323161610D680264000F72756B65796D65726765335F313262610C680264000F72756B65796D65726765335F323162610C6A68026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302 F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6802640006696E6C696E656C0000000468026400096D65726765335F3132610768026400096D65726765335F32316107680264000A726D65726765335F31326107680264000A726D65726765335F323161076A6802640006696E6C696E656C00000004680264000A756D65726765335F31326108680264000A756D65726765335F32316108680264000C72756D65726765335F3132616107680264000C72756D65726765335F31326261086A6802640006696E6C696E656C00000004680264000C6B65796D65726765335F3132610C680264000C6B65796D65726765335F32 31610C680264000D726B65796D65726765335F3132610C680264000D726B65796D65726765335F3231610C6A6802640006696E6C696E656C00000006680264000D756B65796D65726765335F3132610D680264000D756B65796D65726765335F3231610D680264000F72756B65796D65726765335F313261610B680264000F72756B65796D65726765335F323161610D680264000F72756B65796D65726765335F313262610C680264000F72756B65796D65726765335F323162610C6A6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612961366802640006736F757263656B003C2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F6C697374732E65726C6A +=mod:gen_server +Current size: 21642 +Current attributes: 836C00000001680264000376736E6C000000016E10003BFD20F2E52EF8D4DC31B509765364856A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612961316802640006736F757263656B00412F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F67656E5F7365727665722E65726C6A +=mod:application +Current size: 2927 +Current attributes: 836C00000001680264000376736E6C000000016E1000726170026687466698C15C3BD0F932706A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61116802640006736F757263656B00422F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F6170706C69636174696F6E2E65726C6A +=mod:sys +Current size: 11559 +Current attributes: 836C00000001680264000376736E6C000000016E1000EC4C3AF0470950E26F724617953F66A36A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A610D6802640006736F757263656B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F7379732E65726C6A +=mod:application_master +Current size: 10450 +Current attributes: 836C00000001680264000376736E6C000000016E100036D36567444B98D8FB52C75E55F120F96A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61136802640006736F757263656B00492F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F6170706C69636174696F6E5F6D61737465722E65726C6A +=mod:kernel +Current size: 8091 +Current attributes: 836C00000002680264000376736E6C000000016E1000E3AF5CAA88DC0FDD1C8A97A8539EE2B76A68026400096265686176696F75726C0000000164000A73757065727669736F726A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61336802640006736F757263656B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F6B65726E656C2E65726C6A +=mod:supervisor +Current size: 27919 +Current attributes: 836C00000002680264000376736E6C000000016E1000A3C8FC556F75E24CD42464B047E567026A68026400096265686176696F75726C0000000164000A67656E5F7365727665726A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A610D6802640006736F757263656B00412F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F73757065727669736F722E65726C6A +=mod:dict +Current size: 16908 +Current attributes: 836C00000001680264000376736E6C000000016E1000417BF4D3FA9208412F31AB2FB3EF83C06A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612961146802640006736F757263656B003B2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F646963742E65726C6A +=mod:rpc +Current size: 12955 +Current attributes: 836C00000003680264000376736E6C000000016E100011FC8F079CB4F57BB9470F027C2E9EF46A68026400096265686176696F75726C0000000164000A67656E5F7365727665726A680264000A646570726563617465646C000000026802640016736166655F6D756C74695F7365727665725F63616C6C61026802640016736166655F6D756C74695F7365727665725F63616C6C61036A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61386802640006736F757263656B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F7270632E65726C6A +=mod:gb_trees +Current size: 8280 +Current attributes: 836C00000001680264000376736E6C000000016E10001D5FE72F8EB19DB9C1B88336CF1871026A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C6129612D6802640006736F757263656B003F2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F67625F74726565732E65726C6A +=mod:global +Current size: 61211 +Current attributes: 836C00000002680264000376736E6C000000016E100074524CB210AD6F0D1D1AE7A9CC969DD26A68026400096265686176696F75726C0000000164000A67656E5F7365727665726A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61266802640006736F757263656B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F676C6F62616C2E65726C6A +=mod:inet_db +Current size: 36895 +Current attributes: 836C00000001680264000376736E6C000000016E1000EFC6072D54D9533DA94BB06DE32226266A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A612D6802640006736F757263656B003E2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F696E65745F64622E65726C6A +=mod:inet_config +Current size: 18179 +Current attributes: 836C00000001680264000376736E6C000000016E1000F54105732CEBE45A76CFE3502C992BF56A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A612C6802640006736F757263656B00422F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F696E65745F636F6E6669672E65726C6A +=mod:os +Current size: 6310 +Current attributes: 836C00000001680264000376736E6C000000016E1000D0C337B9682EE929E11D46EE060B62B16A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61366802640006736F757263656B00392F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F6F732E65726C6A +=mod:inet_udp +Current size: 2716 +Current attributes: 836C00000001680264000376736E6C000000016E1000A1D23D5A2F4A8A961C6CBB9EC6C84E9F6A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61326802640006736F757263656B003F2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F696E65745F7564702E65726C6A +=mod:inet +Current size: 28952 +Current attributes: 836C00000001680264000376736E6C000000016E100055B5C7591920698F75740A8A9174D6F86A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A612A6802640006736F757263656B003B2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F696E65742E65726C6A +=mod:inet_parse +Current size: 22622 +Current attributes: 836C00000001680264000376736E6C000000016E100039B0D1222177D06976986986472C12DC6A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61306802640006736F757263656B00412F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F696E65745F70617273652E65726C6A +=mod:inet_gethost_native +Current size: 16391 +Current attributes: 836C00000002680264000376736E6C000000016E10007DB8BF88F8216CB0EC5395C4F91584FF6A68026400096265686176696F75726C0000000164001173757065727669736F725F6272696467656A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A612F6802640006736F757263656B004A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F696E65745F676574686F73745F6E61746976652E65726C6A +=mod:erl_distribution +Current size: 2497 +Current attributes: 836C00000002680264000376736E6C000000016E10001AAD366E7B81593E4AF26A0CF5D1673B6A68026400096265686176696F75726C0000000164000A73757065727669736F726A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A611E6802640006736F757263656B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F65726C5F646973747269627574696F6E2E65726C6A +=mod:global_group +Current size: 32273 +Current attributes: 836C00000002680264000376736E6C000000016E1000A7785141349C3C5D9048679C9700687C6A68026400096265686176696F75726C0000000164000A67656E5F7365727665726A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61276802640006736F757263656B00432F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F676C6F62616C5F67726F75702E65726C6A +=mod:net_kernel +Current size: 41663 +Current attributes: 836C00000002680264000376736E6C000000016E10008FD029B71694CCC054A5BD2318FB39576A68026400096265686176696F75726C0000000164000A67656E5F7365727665726A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61366802640006736F757263656B00412F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F6E65745F6B65726E656C2E65726C6A +=mod:file_server +Current size: 7984 +Current attributes: 836C00000002680264000376736E6C000000016E1000651D689B0650F7652654DA8EC5A65D206A68026400096265686176696F75726C0000000164000A67656E5F7365727665726A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61236802640006736F757263656B00422F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F66696C655F7365727665722E65726C6A +=mod:code +Current size: 9092 +Current attributes: 836C00000001680264000376736E6C000000016E100067BBB442747EEF400B975C6CE8DC940E6A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61146802640006736F757263656B003B2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F636F64652E65726C6A +=mod:code_server +Current size: 34171 +Current attributes: 836C00000001680264000376736E6C000000016E10003A7629C1C4132809A25E71EECF5F93936A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61166802640006736F757263656B00422F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F636F64655F7365727665722E65726C6A +=mod:code_aux +Current size: 1876 +Current attributes: 836C00000001680264000376736E6C000000016E10007F090B3DD04435C2B18A85663AEB51146A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61156802640006736F757263656B003F2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F636F64655F6175782E65726C6A +=mod:packages +Current size: 3208 +Current attributes: 836C00000001680264000376736E6C000000016E1000BEAD647E2F6FF604BE3AC18D834A3D246A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61376802640006736F757263656B003F2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F7061636B616765732E65726C6A +=mod:hipe_unified_loader +Current size: 20567 +Current attributes: 836C00000001680264000376736E6C000000016E10009432389821F785CEA243638A5A916D866A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61296802640006736F757263656B004A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F686970655F756E69666965645F6C6F616465722E65726C6A +=mod:gb_sets +Current size: 13087 +Current attributes: 836C00000001680264000376736E6C000000016E1000990386ADBD6283AA0B998FB15FA798426A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C6129612E6802640006736F757263656B003E2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F67625F736574732E65726C6A +=mod:ets +Current size: 21647 +Current attributes: 836C00000001680264000376736E6C000000016E10009850E8F5D0C9D8A0DE349552F33034CD6A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612961296802640006736F757263656B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F6574732E65726C6A +=mod:filename +Current size: 17072 +Current attributes: 836C00000001680264000376736E6C000000016E1000948D2A8DB310A097219BAD17CE7198C16A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C6129612D6802640006736F757263656B003F2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F66696C656E616D652E65726C6A +=mod:user_sup +Current size: 2572 +Current attributes: 836C00000002680264000376736E6C000000016E10008BA7996379188F9E5F5EA3DA01FDC1D96A68026400096265686176696F75726C0000000164001173757065727669736F725F6272696467656A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A613A6802640006736F757263656B003F2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F757365725F7375702E65726C6A +=mod:supervisor_bridge +Current size: 3134 +Current attributes: 836C00000002680264000376736E6C000000016E1000D8EC7E85CC056881779DB0ED3DD989296A68026400096265686176696F75726C0000000164000A67656E5F7365727665726A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A610D6802640006736F757263656B00482F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F73757065727669736F725F6272696467652E65726C6A +=mod:user +Current size: 11720 +Current attributes: 836C00000001680264000376736E6C000000016E10005C9D758FC84E0C7DFCC57E174AB538B26A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61396802640006736F757263656B003B2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F757365722E65726C6A +=mod:kernel_config +Current size: 3606 +Current attributes: 836C00000002680264000376736E6C000000016E1000FF8CF8C34792DEE22724DDE1006314476A68026400096265686176696F75726C0000000164000A67656E5F7365727665726A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61346802640006736F757263656B00442F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F6B65726E656C5F636F6E6669672E65726C6A +=mod:queue +Current size: 6693 +Current attributes: 836C00000001680264000376736E6C000000016E1000D6FAA6E791EF350389783927640402886A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61056802640006736F757263656B003C2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F71756575652E65726C6A +=mod:error_logger_tty_h +Current size: 8690 +Current attributes: 836C00000002680264000376736E6C000000016E100011D5D74D877EF1A23012BC726C6617AF6A68026400096265686176696F75726C0000000164000967656E5F6576656E746A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612961286802640006736F757263656B00492F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F6572726F725F6C6F676765725F7474795F682E65726C6A +=mod:c +Current size: 33605 +Current attributes: 836C00000001680264000376736E6C000000016E1000356121C6CB563546DAD26051F594CAF96A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612961096802640006736F757263656B00382F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F632E65726C6A +=mod:file +Current size: 20276 +Current attributes: 836C00000001680264000376736E6C000000016E10007E4736B75885F5B24B0EBB76D3E5CB2A6A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61226802640006736F757263656B003B2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F66696C652E65726C6A +=mod:erl_eval +Current size: 38624 +Current attributes: 836C00000001680264000376736E6C000000016E10001570F17090834D029048F1D9A48461C16A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C000000086400116269746C6576656C5F62696E617269657368026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6400116269746C6576656C5F62696E61726965736A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612961196802640006736F757263656B003F2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F737 4646C69622F7372632F65726C5F6576616C2E65726C6A +=mod:orddict +Current size: 4975 +Current attributes: 836C00000001680264000376736E6C000000016E10004FE2C50A75613AB2917D8D0FE2C8598F6A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612961396802640006736F757263656B003E2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F6F7264646963742E65726C6A +=mod:file_io_server +Current size: 11938 +Current attributes: 836C00000001680264000376736E6C000000016E10000146A958F6B9A17408A2BFDE2DF9AAAD6A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000568026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F2E2E2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612A61226802640006736F757263656B00452F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F6B65726E656C2F7372632F66696C655F696F5F7365727665722E65726C6A +=mod:erl_scan +Current size: 22116 +Current attributes: 836C00000001680264000376736E6C000000016E1000DE49A32A286A69AC5C7E88F29DBD749A6A6A +Current compilation info: 836C0000000468026400076F7074696F6E736C0000000668026400036377646B00322F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F73726368026400066F75746469726B003A2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F6562696E6802640001696B003D2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F696E636C7564656802640001696B00472F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F2E2E2F2E2E2F6B65726E656C2F696E636C7564656400137761726E5F6F62736F6C6574655F677561726464000A64656275675F696E666F6A680264000776657273696F6E6B0003342E35680264000474696D65680662000007D86104610C610C612961266802640006736F757263656B003F2F55736572732F6A616E2F446F776E6C6F6164732F6F74705F7372635F523132422D302F6C69622F7374646C69622F7372632F65726C5F7363616E2E65726C6A +=mod:erl_parse +Current size: 138655 +Current attributes: 836C00000001680264000376736E6C000000016E1000EBDDD5F451F564959FCB69212B7685DC6A6A [... 11153 lines stripped ...] Added: incubator/couchdb/branches/runtimeconfig/test/test.ini URL: http://svn.apache.org/viewvc/incubator/couchdb/branches/runtimeconfig/test/test.ini?rev=667960&view=auto ============================================================================== --- incubator/couchdb/branches/runtimeconfig/test/test.ini (added) +++ incubator/couchdb/branches/runtimeconfig/test/test.ini Sun Jun 15 06:48:01 2008 @@ -0,0 +1,22 @@ +; etc/couchdb/couch.ini.tpl. Generated from couch.ini.tpl.in by configure. + +[CouchDB] +RootDirectory=/Users/jan/Work/runcouch/conf9/var/lib/couchdb +UtilDriverDir=/Users/jan/Work/runcouch/conf9/lib/couchdb/erlang/lib/couch-0.7.3a663206/priv/lib +MaximumDocumentSize=4294967296 ; 4 GB + +[HTTPd] +Port=5984 +BindAddress=127.0.0.1 +DocumentRoot=/Users/jan/Work/runcouch/conf9/share/couchdb/www + +FantasyConfiguration=Citation Needed +[Log] +File=/Users/jan/Work/runcouch/conf9/var/log/couchdb/couch.log +Level=info + +[CouchDB Query Servers] +javascript=/Users/jan/Work/runcouch/conf9/bin/couchjs /Users/jan/Work/runcouch/conf9/share/couchdb/server/main.js + +[CouchDB Query Server Options] +QueryTimeout=5000 ; 5 seconds Added: incubator/couchdb/branches/runtimeconfig/test/test_runner.beam URL: http://svn.apache.org/viewvc/incubator/couchdb/branches/runtimeconfig/test/test_runner.beam?rev=667960&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/couchdb/branches/runtimeconfig/test/test_runner.beam ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/couchdb/branches/runtimeconfig/test/test_runner.erl URL: http://svn.apache.org/viewvc/incubator/couchdb/branches/runtimeconfig/test/test_runner.erl?rev=667960&view=auto ============================================================================== --- incubator/couchdb/branches/runtimeconfig/test/test_runner.erl (added) +++ incubator/couchdb/branches/runtimeconfig/test/test_runner.erl Sun Jun 15 06:48:01 2008 @@ -0,0 +1,68 @@ +-module(test_runner). + +-export([run/0]). +-include("../src/couchdb/test/couch_config_test.erl"). +-include("../src/couchdb/test/couch_config_writer_test.erl"). + + +%% Test Runner +run() -> + % mochiweb tests + % case mochiweb:test() of + % ok -> + % io:format("Mochiweb Tests PASSED~n"); + % _ -> + % io:format("Mochiweb Tests FAILED~n") + % end, + + % CouchDB tests + Tests = lists:flatten([ + couch_config_test(), + couch_config_writer_test() + ]), + run_tests(Tests), + + % we're done, get out of here + halt(). + +run_test(TestFun) -> + io:format(" ~s ", [proplists:get_value( + name, + erlang:fun_info(TestFun))]), + try TestFun() of + _ -> + io:format("[PASSED]~n", []), + passed + catch + _:{skipped, Reason} -> + io:format("[SKIPPED]~n", []), + io:format(" reason: ~s~n", [Reason]), + skipped; + _:X -> + io:format("[FAILED]~n", []), + io:format("ERROR: ~n======~n~p ~n======~n~n", + [{X, erlang:get_stacktrace()}]), + failed + end. + +run_tests(List) -> + io:format("Running ~p tests...~n", [lists:flatlength(List)]), + + Results = lists:map(fun run_test/1, List), + + Passed = lists:filter( + fun (Result) -> Result =:= passed end, + Results), + + Failed = lists:filter( + fun (Result) -> Result =:= failed end, + Results), + + Skipped = lists:filter( + fun(Result) -> Result =:= skipped end, + Results), + + io:format("PASSED: ~p, FAILED: ~p, SKIPPED: ~p ~n", + [lists:flatlength(Passed), + lists:flatlength(Failed), + lists:flatlength(Skipped)]).