<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/glib.git/tests/relation-test.c, branch pgriffis/wip/resolver-https</title>
<subtitle>gitlab.gnome.org: GNOME/glib.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/'/>
<entry>
<title>Normalize C source files to end with exactly one newline</title>
<updated>2020-06-10T08:48:02+00:00</updated>
<author>
<name>Simon McVittie</name>
<email>smcv@collabora.com</email>
</author>
<published>2020-04-21T13:46:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=44c004c84e9080040ff4e0e90b322dda0561cf85'/>
<id>44c004c84e9080040ff4e0e90b322dda0561cf85</id>
<content type='text'>
Some editors automatically remove trailing blank lines, or
automatically add a trailing newline to avoid having a trailing
non-blank line that is not terminated by a newline. To avoid unrelated
whitespace changes when users of such editors contribute to GLib,
let's pre-emptively normalize all files.

Unlike more intrusive whitespace normalization like removing trailing
whitespace from each line, this seems unlikely to cause significant
issues with cherry-picking changes to stable branches.

Implemented by:

    find . -name '*.[ch]' -print0 | \
    xargs -0 perl -0777 -p -i -e 's/\n+\z//g; s/\z/\n/g'

Signed-off-by: Simon McVittie &lt;smcv@collabora.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some editors automatically remove trailing blank lines, or
automatically add a trailing newline to avoid having a trailing
non-blank line that is not terminated by a newline. To avoid unrelated
whitespace changes when users of such editors contribute to GLib,
let's pre-emptively normalize all files.

Unlike more intrusive whitespace normalization like removing trailing
whitespace from each line, this seems unlikely to cause significant
issues with cherry-picking changes to stable branches.

Implemented by:

    find . -name '*.[ch]' -print0 | \
    xargs -0 perl -0777 -p -i -e 's/\n+\z//g; s/\z/\n/g'

Signed-off-by: Simon McVittie &lt;smcv@collabora.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>tests/: LGPLv2+ -&gt; LGPLv2.1+</title>
<updated>2017-05-29T17:53:35+00:00</updated>
<author>
<name>Sébastien Wilmet</name>
<email>swilmet@gnome.org</email>
</author>
<published>2017-05-28T12:09:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=f6c44ec3e44557463721a54b7b6fe0264c6d2424'/>
<id>f6c44ec3e44557463721a54b7b6fe0264c6d2424</id>
<content type='text'>
gen-casefold-txt.pl and gen-casemap-txt.pl are licensed under GPLv2+, so
they are not touched by this commit.

A lot of *.c files in tests/ don't have a license header.

https://bugzilla.gnome.org/show_bug.cgi?id=776504
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
gen-casefold-txt.pl and gen-casemap-txt.pl are licensed under GPLv2+, so
they are not touched by this commit.

A lot of *.c files in tests/ don't have a license header.

https://bugzilla.gnome.org/show_bug.cgi?id=776504
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated FSF's address</title>
<updated>2014-01-31T13:31:55+00:00</updated>
<author>
<name>Daniel Mustieles</name>
<email>daniel.mustieles@gmail.com</email>
</author>
<published>2014-01-23T11:58:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=078dbda148a81af1b3a76fbda72f089b963087f1'/>
<id>078dbda148a81af1b3a76fbda72f089b963087f1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add missing const. (g_strsplit): Add g_return_val_if_fail for case of</title>
<updated>2001-07-19T20:07:41+00:00</updated>
<author>
<name>Darin Adler</name>
<email>darin@src.gnome.org</email>
</author>
<published>2001-07-19T20:07:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=3fa620d4dfeb3440526682b4970bc9147b6665c9'/>
<id>3fa620d4dfeb3440526682b4970bc9147b6665c9</id>
<content type='text'>
	* glib/gstrfuncs.c: (g_ascii_strdown), (g_ascii_strup): Add
	missing const.
	(g_strsplit): Add g_return_val_if_fail for case of empty
	delimiter, which can result in an infinite loop otherwise.
	* glib/gstrfuncs.h: Add missing const.
	* tests/.cvsignore: Ignore a generated file.

	* tests/array-test.c:
	* tests/dirname-test.c:
	* tests/hash-test.c:
	* tests/list-test.c:
	* tests/node-test.c:
	* tests/relation-test.c:
	* tests/shell-test.c:
	* tests/slist-test.c:
	* tests/spawn-test.c:
	* tests/strfunc-test.c:
	* tests/string-test.c:
	* tests/testglib.c:
	* tests/tree-test.c:
	* tests/type-test.c:
	Add an #undef G_DISABLE_ASSERT so all tests will assert even if
	asserts are disabled inside glib itself.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	* glib/gstrfuncs.c: (g_ascii_strdown), (g_ascii_strup): Add
	missing const.
	(g_strsplit): Add g_return_val_if_fail for case of empty
	delimiter, which can result in an infinite loop otherwise.
	* glib/gstrfuncs.h: Add missing const.
	* tests/.cvsignore: Ignore a generated file.

	* tests/array-test.c:
	* tests/dirname-test.c:
	* tests/hash-test.c:
	* tests/list-test.c:
	* tests/node-test.c:
	* tests/relation-test.c:
	* tests/shell-test.c:
	* tests/slist-test.c:
	* tests/spawn-test.c:
	* tests/strfunc-test.c:
	* tests/string-test.c:
	* tests/testglib.c:
	* tests/tree-test.c:
	* tests/type-test.c:
	Add an #undef G_DISABLE_ASSERT so all tests will assert even if
	asserts are disabled inside glib itself.
</pre>
</div>
</content>
</entry>
<entry>
<title>applied patch from Andreas Persenius &lt;ndap@swipnet.se&gt; that updates the</title>
<updated>2000-07-26T11:02:02+00:00</updated>
<author>
<name>Tim Janik</name>
<email>timj@gtk.org</email>
</author>
<published>2000-07-26T11:02:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=c9bd7542e1a28ba9de60048361c0a97d251833e7'/>
<id>c9bd7542e1a28ba9de60048361c0a97d251833e7</id>
<content type='text'>
Wed Jul 26 12:59:31 2000  Tim Janik  &lt;timj@gtk.org&gt;

        * *.[hc]: applied patch from Andreas Persenius &lt;ndap@swipnet.se&gt; that
        updates the license headers to the GNU Lesser General Public License,
        as well as updating the copyright year to 2000.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Wed Jul 26 12:59:31 2000  Tim Janik  &lt;timj@gtk.org&gt;

        * *.[hc]: applied patch from Andreas Persenius &lt;ndap@swipnet.se&gt; that
        updates the license headers to the GNU Lesser General Public License,
        as well as updating the copyright year to 2000.
</pre>
</div>
</content>
</entry>
<entry>
<title>inserted additional note to look for ChangeLog and AUTHORS file for a log</title>
<updated>1999-02-24T06:14:27+00:00</updated>
<author>
<name>CST 1999 Shawn T. Amundson</name>
<email>amundson@gtk.org</email>
</author>
<published>1999-02-24T06:14:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=b9ef2b41db975061960e2217220668c2a5d563da'/>
<id>b9ef2b41db975061960e2217220668c2a5d563da</id>
<content type='text'>
Wed Feb 24 00:08:42 CST 1999 Shawn T. Amundson &lt;amundson@gtk.org&gt;

        * *.[ch]: inserted additional note to look for ChangeLog and
	  AUTHORS file for a log of modifications.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Wed Feb 24 00:08:42 CST 1999 Shawn T. Amundson &lt;amundson@gtk.org&gt;

        * *.[ch]: inserted additional note to look for ChangeLog and
	  AUTHORS file for a log of modifications.
</pre>
</div>
</content>
</entry>
<entry>
<title>Added 'make check' tests, based on testglib code.</title>
<updated>1999-01-03T03:42:59+00:00</updated>
<author>
<name>Jeff Garzik</name>
<email>jgarzik@src.gnome.org</email>
</author>
<published>1999-01-03T03:42:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=0b74f03e70ea7cab8c0f9d58108a446e3cb16d1e'/>
<id>0b74f03e70ea7cab8c0f9d58108a446e3cb16d1e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
