typemap for HParseResult is returning the appropriate zval, but why does PHP think it's null?
This commit is contained in:
parent
0810bd33d2
commit
49ca034b32
3 changed files with 81 additions and 15 deletions
|
|
@ -22,7 +22,7 @@ phpextprefix = os.popen("php-config --extension-dir").read().rstrip()
|
|||
phplib = phptestenv.Command(os.path.join(phpextprefix, "hammer.so"), libhammer_php, Copy("$TARGET", "$SOURCE"))
|
||||
AlwaysBuild(phplib)
|
||||
phpprefix = os.popen("php-config --prefix").read().rstrip()
|
||||
phpincl = phptestenv.Command(os.path.join(phpprefix, "hammer.ini"), "hammer.ini", Copy("$TARGET", "$SOURCE"))
|
||||
phpincl = phptestenv.Command(os.path.join(os.path.join(phpprefix, "etc/conf.d"), "hammer.ini"), "hammer.ini", Copy("$TARGET", "$SOURCE"))
|
||||
phptestexec = phptestenv.Command(phptests, [phplib, phpincl], "phpenv exec phpunit -v --include-path " + os.path.dirname(libhammer_php[0].path) +" src/bindings/php/Tests")
|
||||
phptest = Alias("testphp", [phptestexec], phptestexec)
|
||||
AlwaysBuild(phptest)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue