summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-11-05 10:25:57 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-11-05 10:25:57 +0100
commitaec191bc6cbb83884466800a750ecad0b37e254f (patch)
treef52fe2b9551056580c5c519fb78a3c5600e1034a /Makefile
parentaf530282f530580c1ed7bc184df0a727068275e1 (diff)
remove test framework, it never works, most of the bugs found by the test framework turn out to be caused by errors in the tests instead of errors in the real code, people complain about it all the time, and basically this whole test framework causes more problems than it solves, solves issue #215 and solves issue #221
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/Makefile b/Makefile
index a2ce889..d3d0596 100644
--- a/Makefile
+++ b/Makefile
@@ -21,18 +21,6 @@ PHP_CONFIG = php-config
#
-# PHP binary file
-#
-# The path to the executable PHP binary file.
-# Need to run tests.
-# You can see the command "whereis -b php"
-# Usually /usr/bin/php
-#
-
-PHP_BIN = $(shell ${PHP_CONFIG} --php-binary)
-
-
-#
# Installation directory
#
# When you install the PHP-CPP library, it will place a number of C++ *.h
@@ -230,7 +218,3 @@ install:
sudo ldconfig; \
fi
-test:
- mkdir -p tests/include/zts/phpcpp
- cd tests && ./test.sh -p "${PHP_BIN}"
-