Code

Add Libtap as a bundled library (does not change any behaviour without --enable-libtap)
authorThomas Guyot-Sionnest <dermoth@aei.ca>
Fri, 28 Nov 2008 10:01:53 +0000 (05:01 -0500)
committerThomas Guyot-Sionnest <dermoth@aei.ca>
Sat, 29 Nov 2008 09:38:54 +0000 (04:38 -0500)
commit2bbf2e6967daa0a9f86874aac409fde245a3bc85
tree7fc7a9e96f3bc0e1b6749cbd999c93a292e0d12b
parent538b97cea63d68efbd9c9c67d9c41278cfd1ebad
Add Libtap as a bundled library (does not change any behaviour without --enable-libtap)

Detects system library as pre-1.4.13 and does not install the built-in library anymore

Tested on:
  - Linux x86_64, with and without local libtap (System libtap installed)
- Linux x86, with and without local libtap (System libtap NOT installed)
  - Solaris SPARC, with and without local libtap, with and without system libtap installed
74 files changed:
.gitignore
Makefile.am
NEWS
configure.in
lib/tests/Makefile.am
tap/Makefile.am [new file with mode: 0644]
tap/README [new file with mode: 0644]
tap/tap.3 [new file with mode: 0644]
tap/tap.c [new file with mode: 0644]
tap/tap.h [new file with mode: 0644]
tap/tests/Makefile.am [new file with mode: 0644]
tap/tests/README [new file with mode: 0644]
tap/tests/diag/Makefile.am [new file with mode: 0644]
tap/tests/diag/test.c [new file with mode: 0644]
tap/tests/diag/test.pl [new file with mode: 0644]
tap/tests/diag/test.t [new file with mode: 0644]
tap/tests/fail/Makefile.am [new file with mode: 0644]
tap/tests/fail/test.c [new file with mode: 0644]
tap/tests/fail/test.pl [new file with mode: 0644]
tap/tests/fail/test.t [new file with mode: 0644]
tap/tests/ok/Makefile.am [new file with mode: 0644]
tap/tests/ok/ok-hash/Makefile.am [new file with mode: 0644]
tap/tests/ok/ok-hash/test.c [new file with mode: 0644]
tap/tests/ok/ok-hash/test.pl [new file with mode: 0644]
tap/tests/ok/ok-hash/test.t [new file with mode: 0644]
tap/tests/ok/ok-numeric/Makefile.am [new file with mode: 0644]
tap/tests/ok/ok-numeric/test.c [new file with mode: 0644]
tap/tests/ok/ok-numeric/test.pl [new file with mode: 0644]
tap/tests/ok/ok-numeric/test.t [new file with mode: 0644]
tap/tests/ok/ok/Makefile.am [new file with mode: 0644]
tap/tests/ok/ok/test.c [new file with mode: 0644]
tap/tests/ok/ok/test.pl [new file with mode: 0644]
tap/tests/ok/ok/test.t [new file with mode: 0644]
tap/tests/pass/Makefile.am [new file with mode: 0644]
tap/tests/pass/test.c [new file with mode: 0644]
tap/tests/pass/test.pl [new file with mode: 0644]
tap/tests/pass/test.t [new file with mode: 0644]
tap/tests/plan/Makefile.am [new file with mode: 0644]
tap/tests/plan/no-tests/Makefile.am [new file with mode: 0644]
tap/tests/plan/no-tests/test.c [new file with mode: 0644]
tap/tests/plan/no-tests/test.pl [new file with mode: 0644]
tap/tests/plan/no-tests/test.t [new file with mode: 0644]
tap/tests/plan/no_plan/Makefile.am [new file with mode: 0644]
tap/tests/plan/no_plan/test.c [new file with mode: 0644]
tap/tests/plan/no_plan/test.pl [new file with mode: 0644]
tap/tests/plan/no_plan/test.t [new file with mode: 0644]
tap/tests/plan/not-enough-tests/Makefile.am [new file with mode: 0644]
tap/tests/plan/not-enough-tests/test.c [new file with mode: 0644]
tap/tests/plan/not-enough-tests/test.pl [new file with mode: 0644]
tap/tests/plan/not-enough-tests/test.t [new file with mode: 0644]
tap/tests/plan/sane/Makefile.am [new file with mode: 0644]
tap/tests/plan/sane/test.c [new file with mode: 0644]
tap/tests/plan/sane/test.pl [new file with mode: 0644]
tap/tests/plan/sane/test.t [new file with mode: 0644]
tap/tests/plan/skip_all/Makefile.am [new file with mode: 0644]
tap/tests/plan/skip_all/test.c [new file with mode: 0644]
tap/tests/plan/skip_all/test.pl [new file with mode: 0644]
tap/tests/plan/skip_all/test.t [new file with mode: 0644]
tap/tests/plan/too-many-plans/Makefile.am [new file with mode: 0644]
tap/tests/plan/too-many-plans/test.c [new file with mode: 0644]
tap/tests/plan/too-many-plans/test.pl [new file with mode: 0644]
tap/tests/plan/too-many-plans/test.t [new file with mode: 0644]
tap/tests/plan/too-many-tests/Makefile.am [new file with mode: 0644]
tap/tests/plan/too-many-tests/test.c [new file with mode: 0644]
tap/tests/plan/too-many-tests/test.pl [new file with mode: 0644]
tap/tests/plan/too-many-tests/test.t [new file with mode: 0644]
tap/tests/skip/Makefile.am [new file with mode: 0644]
tap/tests/skip/test.c [new file with mode: 0644]
tap/tests/skip/test.pl [new file with mode: 0644]
tap/tests/skip/test.t [new file with mode: 0644]
tap/tests/todo/Makefile.am [new file with mode: 0644]
tap/tests/todo/test.c [new file with mode: 0644]
tap/tests/todo/test.pl [new file with mode: 0644]
tap/tests/todo/test.t [new file with mode: 0644]