summaryrefslogtreecommitdiff
path: root/tests/php/php_alias.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/php/php_alias.sh')
-rwxr-xr-xtests/php/php_alias.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/php/php_alias.sh b/tests/php/php_alias.sh
deleted file mode 100755
index 4393172..0000000
--- a/tests/php/php_alias.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-#!/bin/bash
-#
-# this only alias to comand "/usr/bin/php -d enable_dl=On -d extension_dir=../ext_dir -d extension=extfortest.so"
-# Designed to simplify debugging of tests
-# You can get the same thing using normal aliases: `alias php_alias="php -d enable_dl=On -d extension_dir=../ext_dir -d extension=extfortest.so"`
-# Exemlple toese: $ ./php_alias.sh dbg.php
-#
-
-if [ ! $1 ]
-then
- echo "Required the path to php file"
- exit;
-fi
-
-LD_LIBRARY_PATH="$(cd $PWD/../.. && echo $PWD):${LD_LIBRARY_PATH}"
-export LD_LIBRARY_PATH
-
-/usr/bin/php -d extension_dir=../ext_dir -d extension=extfortest.so -d ini7=47 -d ini1=ReValIni1 -d ini2=ReValIni2 $1 $2 $3 $4 $5