<feed xmlns='http://www.w3.org/2005/Atom'>
<title>krb5-wallet.git/perl, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<id>https://git.gnuabordo.com.br/krb5-wallet.git/atom?h=master</id>
<link rel='self' href='https://git.gnuabordo.com.br/krb5-wallet.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.gnuabordo.com.br/krb5-wallet.git/'/>
<updated>2021-09-04T20:03:36+00:00</updated>
<entry>
<title>Fix Stanford policy for password default owner</title>
<updated>2021-09-04T20:03:36+00:00</updated>
<author>
<name>Russ Allbery</name>
<email>eagle@eyrie.org</email>
</author>
<published>2021-09-04T20:03:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.gnuabordo.com.br/krb5-wallet.git/commit/?id=b63cd1c55861194c84e8efd8fa713d96c651b43a'/>
<id>urn:sha1:b63cd1c55861194c84e8efd8fa713d96c651b43a</id>
<content type='text'>
In Wallet::Policy::Stanford, fix the default_owner logic for password
objects that are group-based rather than host-based.  Thanks,
macrotex.

Fixes #82
</content>
</entry>
<entry>
<title>Suppress remctld output in Perl tests</title>
<updated>2020-05-18T05:21:59+00:00</updated>
<author>
<name>Russ Allbery</name>
<email>eagle@eyrie.org</email>
</author>
<published>2020-05-18T05:21:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.gnuabordo.com.br/krb5-wallet.git/commit/?id=acaa1794f08b0b8a42e9247f5186e00a888bd437'/>
<id>urn:sha1:acaa1794f08b0b8a42e9247f5186e00a888bd437</id>
<content type='text'>
Until I have a better way of handling the interleaving of output,
send the output from remctld to /dev/null for the Perl tests.
</content>
</entry>
<entry>
<title>Suppress unversioned database warnings in a test</title>
<updated>2020-05-18T05:20:42+00:00</updated>
<author>
<name>Russ Allbery</name>
<email>eagle@eyrie.org</email>
</author>
<published>2020-05-18T05:20:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.gnuabordo.com.br/krb5-wallet.git/commit/?id=303d68b41763b0aab62cd37190ded99998d8afc5'/>
<id>urn:sha1:303d68b41763b0aab62cd37190ded99998d8afc5</id>
<content type='text'>
In general/server, suppress warnings from an unversioned database
when testing various failure scenarios.
</content>
</entry>
<entry>
<title>Sort the ACL membership report</title>
<updated>2020-05-18T05:19:39+00:00</updated>
<author>
<name>Russ Allbery</name>
<email>eagle@eyrie.org</email>
</author>
<published>2020-05-18T05:19:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.gnuabordo.com.br/krb5-wallet.git/commit/?id=21651a03eee3a174c657515fc75ecd1857500c10'/>
<id>urn:sha1:21651a03eee3a174c657515fc75ecd1857500c10</id>
<content type='text'>
In Wallet::Report, sort the results of acl_membership().  This is
only used for the duplicate ACLs report currently, but it may help
external callers as well as produce reliable results for testing.
Patch from macrotex.
</content>
</entry>
<entry>
<title>Fix table drop order when destroying the database</title>
<updated>2020-05-18T05:17:36+00:00</updated>
<author>
<name>Russ Allbery</name>
<email>eagle@eyrie.org</email>
</author>
<published>2020-05-18T05:17:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.gnuabordo.com.br/krb5-wallet.git/commit/?id=4338488b0410a87b553bfa7ae54b16837b108487'/>
<id>urn:sha1:4338488b0410a87b553bfa7ae54b16837b108487</id>
<content type='text'>
Fix the table drop order for wallet-admin destroy to avoid violating
foreign key constraints.  Patch from macrotex.
</content>
</entry>
<entry>
<title>Sort ACL history by unique key after date</title>
<updated>2020-05-18T05:14:58+00:00</updated>
<author>
<name>Russ Allbery</name>
<email>eagle@eyrie.org</email>
</author>
<published>2020-05-18T05:14:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.gnuabordo.com.br/krb5-wallet.git/commit/?id=47c722846ece5eb460d91c243e4358eb31e4614b'/>
<id>urn:sha1:47c722846ece5eb460d91c243e4358eb31e4614b</id>
<content type='text'>
If multiple ACL changes were made in the same second, the order of
results could be unstable.  Sort by unique key after date to avoid
this.  Based on work by macrotex.
</content>
</entry>
<entry>
<title>Send remctl test output to stderr</title>
<updated>2020-05-18T03:47:16+00:00</updated>
<author>
<name>Russ Allbery</name>
<email>eagle@eyrie.org</email>
</author>
<published>2020-05-18T03:44:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.gnuabordo.com.br/krb5-wallet.git/commit/?id=c60d58ee05141b058fcb03381a3b34bb7d70c15a'/>
<id>urn:sha1:c60d58ee05141b058fcb03381a3b34bb7d70c15a</id>
<content type='text'>
We were sending stderr to stdout for remctl output, but sometimes
tests would fail because the remctl output was intermixed with the
test output and confused runtests.  runtests only looks at stdout
for test output and sends stderr to /dev/null, so send remctl
output there.

This isn't a great solution since it interferes with debugging
tests.  The correct solution is to implement the same logging and
polling that's used by C TAP Harness, although that's more difficult
to do in Perl.  But it should make the immediate problem go away.

Continue to send the message about which remctl command line is in
use to stdout, but prefix it with # so that it is a TAP comment.
</content>
</entry>
<entry>
<title>Update to rra-c-util 8.2 and C TAP Harness 4.7</title>
<updated>2020-05-18T00:05:30+00:00</updated>
<author>
<name>Russ Allbery</name>
<email>eagle@eyrie.org</email>
</author>
<published>2020-05-18T00:05:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.gnuabordo.com.br/krb5-wallet.git/commit/?id=c138111a3c27863308b6552a5527a9e821a3dc11'/>
<id>urn:sha1:c138111a3c27863308b6552a5527a9e821a3dc11</id>
<content type='text'>
Update to rra-c-util 8.2:

* Implement explicit_bzero with memset if it is not available.
* Reformat all C source using clang-format 10.
* Work around Test::Strict not skipping .git directories.
* Fix warnings with perltidy 20190601 and Perl::Critic 1.134.
* Fix warnings with Clang 10, GCC 10, and the Clang static analyzer.

Update to C TAP Harness 4.7:

* Fix warnings with GCC 10.
* Reformat all C source using clang-format 10.
* Fixed malloc error checking in bstrndup.
</content>
</entry>
<entry>
<title>Fix skipping in verifier/netdb test</title>
<updated>2018-06-04T00:52:20+00:00</updated>
<author>
<name>Russ Allbery</name>
<email>eagle@eyrie.org</email>
</author>
<published>2018-06-04T00:52:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.gnuabordo.com.br/krb5-wallet.git/commit/?id=e37de01137270d9322405a3bf87035d032228fac'/>
<id>urn:sha1:e37de01137270d9322405a3bf87035d032228fac</id>
<content type='text'>
If AUTHOR_TESTING wasn't set, the test would plan twice.  Fix this
by restructuring it to delay printing a plan and convert the
Kerberos ticket test to a skip_all plan.
</content>
</entry>
<entry>
<title>Add SPDX-License-Identifier headers</title>
<updated>2018-06-03T22:36:42+00:00</updated>
<author>
<name>Russ Allbery</name>
<email>eagle@eyrie.org</email>
</author>
<published>2018-06-03T22:36:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.gnuabordo.com.br/krb5-wallet.git/commit/?id=4a0b9e747c8abfca24f30b7ce1e9a725ce11474a'/>
<id>urn:sha1:4a0b9e747c8abfca24f30b7ce1e9a725ce11474a</id>
<content type='text'>
Add SPDX-License-Identifier headers to all substantial source files.
Collapse copyright years.  Add some Emacs configuration for files
where the copyright notice is at the end.  Add a test that every
file has SPDX-License-Identifier.
</content>
</entry>
</feed>
