pth: run make test

If pth is miscompiled, other software that uses it can fail
mysteriously without a clear indication of the source of the
problem. This causes problems with gnupg2 on some platforms,
for example.

pth's `make test` will reveal this kind of problem, so always run
that to be safe.

See: mistydemeo/tigerbrew#39.
This commit is contained in:
Misty De Meo 2013-05-28 10:53:49 -05:00
parent 31455f5657
commit 0b37b9f22a

View file

@ -12,6 +12,8 @@ class Pth < Formula
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make"
system "make test"
system "make install"
end
end