<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/tools/src, branch OTP-18.2.2</title>
<subtitle>Mirror of Erlang/OTP repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/'/>
<entry>
<title>Merge branch 'legoscia/erl-make-exit-code' into maint</title>
<updated>2015-11-16T12:23:06+00:00</updated>
<author>
<name>Henrik Nord</name>
<email>henrik@erlang.org</email>
</author>
<published>2015-11-16T12:23:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=dc61e819e190ae65b69fbb013511b25023f713ff'/>
<id>dc61e819e190ae65b69fbb013511b25023f713ff</id>
<content type='text'>
* legoscia/erl-make-exit-code:
  Make erl -make return non-zero exit code on failure

OTP-13107
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* legoscia/erl-make-exit-code:
  Make erl -make return non-zero exit code on failure

OTP-13107
</pre>
</div>
</content>
</entry>
<entry>
<title>Make erl -make return non-zero exit code on failure</title>
<updated>2015-10-26T15:55:49+00:00</updated>
<author>
<name>Magnus Henoch</name>
<email>magnus@erlang-solutions.com</email>
</author>
<published>2015-10-26T15:55:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=fb1c22169c96b51f331c0e7885cdbd0806585da2'/>
<id>fb1c22169c96b51f331c0e7885cdbd0806585da2</id>
<content type='text'>
This makes it behave like similar Unix tools.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This makes it behave like similar Unix tools.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix cover output file</title>
<updated>2015-09-09T13:57:59+00:00</updated>
<author>
<name>Yuki Ito</name>
<email>yuki@gnnk.net</email>
</author>
<published>2015-07-05T20:46:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=1a1deb03240e7b1f738b8bc0fb172e6ae8e7061d'/>
<id>1a1deb03240e7b1f738b8bc0fb172e6ae8e7061d</id>
<content type='text'>
This is introduced by ab435488a.

If a module includes lines which are less than 1, for example a module
which includes `eunit.hrl`, its cover output file misses the coverage lines.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is introduced by ab435488a.

If a module includes lines which are less than 1, for example a module
which includes `eunit.hrl`, its cover output file misses the coverage lines.
</pre>
</div>
</content>
</entry>
<entry>
<title>Change license text to APLv2</title>
<updated>2015-06-18T09:31:02+00:00</updated>
<author>
<name>Bruce Yinhe</name>
<email>bruce@erlang.org</email>
</author>
<published>2015-06-18T09:31:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=738c34d4bb8f1a3811acd00af8c6c12107f8315b'/>
<id>738c34d4bb8f1a3811acd00af8c6c12107f8315b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'gomoripeti/tools/cover-no-beam/OTP-12806'</title>
<updated>2015-06-15T09:52:33+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2015-06-15T09:52:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=22c10c0405f14ae33da731129b049724484fa413'/>
<id>22c10c0405f14ae33da731129b049724484fa413</id>
<content type='text'>
* gomoripeti/tools/cover-no-beam/OTP-12806:
  cover: handle undefined module when analysing to file
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* gomoripeti/tools/cover-no-beam/OTP-12806:
  cover: handle undefined module when analysing to file
</pre>
</div>
</content>
</entry>
<entry>
<title>cover: handle undefined module when analysing to file</title>
<updated>2015-06-10T09:44:33+00:00</updated>
<author>
<name>Péter Gömöri</name>
<email>gomoripeti@gmail.com</email>
</author>
<published>2015-05-29T17:00:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=b1012c31f38810c6754dcd4cf03f8d2bfb010506'/>
<id>b1012c31f38810c6754dcd4cf03f8d2bfb010506</id>
<content type='text'>
It is possible that not just the source but even the beam of a module
is not available when calling analyse_to_file.

For example when coverdata is imported from an old file and since then
a module was removed.

Before this fix cover:analyse_to_file/3 could possibly never return
because of a helper process crashed with error:undef and never reply
to the caller.

At the same time link the helper process to cover_server so any
further error won't let the caller waiting indefinitely.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It is possible that not just the source but even the beam of a module
is not available when calling analyse_to_file.

For example when coverdata is imported from an old file and since then
a module was removed.

Before this fix cover:analyse_to_file/3 could possibly never return
because of a helper process crashed with error:undef and never reply
to the caller.

At the same time link the helper process to cover_server so any
further error won't let the caller waiting indefinitely.
</pre>
</div>
</content>
</entry>
<entry>
<title>cover: Unstick modules before loading remote</title>
<updated>2015-06-09T12:37:15+00:00</updated>
<author>
<name>Björn-Egil Dahlberg</name>
<email>egil@erlang.org</email>
</author>
<published>2015-06-09T12:37:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=2b48bda97f7773dea2bae6d2939bf74f9e6e10da'/>
<id>2b48bda97f7773dea2bae6d2939bf74f9e6e10da</id>
<content type='text'>
If not unstuck: faulty error messages will appear in error_logger_warn_SUITE.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If not unstuck: faulty error messages will appear in error_logger_warn_SUITE.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update runtime_dependencies in application resource files</title>
<updated>2015-05-25T07:56:27+00:00</updated>
<author>
<name>Hans Bolinder</name>
<email>hasse@erlang.org</email>
</author>
<published>2015-05-19T09:57:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=2c2260044637b8acd706cf3a784568e27340e61e'/>
<id>2c2260044637b8acd706cf3a784568e27340e61e</id>
<content type='text'>
Applications that use the new erl_anno module are depending on STDLIB 2.5.

Note that CosNotification, Megaco, SNMP, Xmerl, and Parsetools use the
erl_anno module via the Yecc parsers only (the header file in
lib/parsetools/include/yeccpre.hrl calls the erl_anno module).

HiPE does not call the erl_anno module, but uses an exported type.
We have chosen to make HiPE dependent on the erl_anno module.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Applications that use the new erl_anno module are depending on STDLIB 2.5.

Note that CosNotification, Megaco, SNMP, Xmerl, and Parsetools use the
erl_anno module via the Yecc parsers only (the header file in
lib/parsetools/include/yeccpre.hrl calls the erl_anno module).

HiPE does not call the erl_anno module, but uses an exported type.
We have chosen to make HiPE dependent on the erl_anno module.
</pre>
</div>
</content>
</entry>
<entry>
<title>tools: Use module erl_anno</title>
<updated>2015-04-30T10:15:24+00:00</updated>
<author>
<name>Hans Bolinder</name>
<email>hasse@erlang.org</email>
</author>
<published>2014-10-31T08:09:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=a3b8a7a6b93310e2d3327912253a14b8f20ad975'/>
<id>a3b8a7a6b93310e2d3327912253a14b8f20ad975</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tools: Add printout of total number of calls and time in eprof</title>
<updated>2015-04-21T09:14:23+00:00</updated>
<author>
<name>Björn-Egil Dahlberg</name>
<email>egil@erlang.org</email>
</author>
<published>2015-04-21T09:11:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=e166f245984d424340ca3b27e2152808b4d13d29'/>
<id>e166f245984d424340ca3b27e2152808b4d13d29</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
