<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/t/Makefile, branch v1.2.2</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://git.shady.money/git/atom?h=v1.2.2</id>
<link rel='self' href='https://git.shady.money/git/atom?h=v1.2.2'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/'/>
<updated>2005-11-08T19:26:07Z</updated>
<entry>
<title>make tests ignorable with "make -i"</title>
<updated>2005-11-08T19:26:07Z</updated>
<author>
<name>Alex Riesen</name>
<email>raa.lkml@gmail.com</email>
</author>
<published>2005-11-08T09:51:10Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=23fc63bf8fb7c3627f78ca6743b4f3ae17a5df49'/>
<id>urn:sha1:23fc63bf8fb7c3627f78ca6743b4f3ae17a5df49</id>
<content type='text'>
Allow failed tests to be ignored using make's "-i". The patch also
disables parallel make in t/. This doesn't make the testing any
different as before: the tests were run sequentially before.

It also allows to run more tests, ignoring the ones usually failing
just to figure out if something else broke.  (Or to ignore plainly
uninteresting situations because of the testing being done on say...
cygwin ;)

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Deal with $(bindir) and friends with whitespaces.</title>
<updated>2005-10-10T20:51:52Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2005-10-10T20:50:01Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=4769948afe7c502d37746edc2ee2c084c9dcb325'/>
<id>urn:sha1:4769948afe7c502d37746edc2ee2c084c9dcb325</id>
<content type='text'>
... using HPA's shellquote macro.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>More portability.</title>
<updated>2005-10-02T06:19:48Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junio@twinsun.com</email>
</author>
<published>2005-09-30T20:31:16Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=455a7f3275d264f6e66045b92c83747ec461dda5'/>
<id>urn:sha1:455a7f3275d264f6e66045b92c83747ec461dda5</id>
<content type='text'>
 - The location of openssl development files got customizable.
 - The location of iconv development files got customizable.
 - Pass $TAR down to t5000 test so that the user can override with
   'gmake TAR=gtar'.
 - Solaris 'bc' does not seem to grok "define abs()".  There is no
   reason to use bc there -- expr would do.

Signed-off-by: Junio C Hamano &lt;junio@twinsun.com&gt;
</content>
</entry>
<entry>
<title>[PATCH] Make the test more shell generic and fix missing Solaris find option</title>
<updated>2005-09-27T07:16:39Z</updated>
<author>
<name>Peter Eriksen</name>
<email>s022018@student.dtu.dk</email>
</author>
<published>2005-09-24T19:50:29Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=edde7a8b5324d88f07fcb8204da313c19b4988fa'/>
<id>urn:sha1:edde7a8b5324d88f07fcb8204da313c19b4988fa</id>
<content type='text'>
This is from Peter Eriksen, but further fixed.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>t/Makefile: OPTS -&gt; GIT_TEST_OPTS</title>
<updated>2005-05-14T15:58:22Z</updated>
<author>
<name>Petr Baudis</name>
<email>pasky@ucw.cz</email>
</author>
<published>2005-05-14T15:58:22Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=d6928ebd5098452b5bce0f1a5bd3afab5c4f9225'/>
<id>urn:sha1:d6928ebd5098452b5bce0f1a5bd3afab5c4f9225</id>
<content type='text'>
This way, passing this variable through the environment actually makes
sense.
</content>
</entry>
<entry>
<title>t/Makefile cleanup</title>
<updated>2005-05-14T15:57:32Z</updated>
<author>
<name>Petr Baudis</name>
<email>pasky@ucw.cz</email>
</author>
<published>2005-05-14T15:57:32Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=902d960b382a0cd424618ff4e1316da40e4be2f6'/>
<id>urn:sha1:902d960b382a0cd424618ff4e1316da40e4be2f6</id>
<content type='text'>
t/Makefile now does not use double-colon rules (why would it?), the rm
-fr trash in the all rule is silent, and OPTS aren't set to blank so
that they can be taken from the environment.
</content>
</entry>
<entry>
<title>[PATCH 1/2] Test framework take two.</title>
<updated>2005-05-14T14:45:05Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2005-05-14T05:50:32Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=e1970ce43abfbf625bce68516857e910748e5965'/>
<id>urn:sha1:e1970ce43abfbf625bce68516857e910748e5965</id>
<content type='text'>
This adds t/ directory to host test suite, a test helper
library and a basic set of tests.

Petr Baudis raised many valid points at the earlier attempts in
git mailing list.  This round, test-lib.sh has been updated to a
bit more modern style, and the default output is made easier to
read.  Also included is one sample test script that tests the
very basics.  This test has already found one leftover bug
missed when we introduced symlink support, which has been fixed
since then.  The supplied Makefile is designed to run all the
available tests.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
Signed-off-by: Petr Baudis &lt;pasky@ucw.cz&gt;
</content>
</entry>
</feed>
