-
Notifications
You must be signed in to change notification settings - Fork 24
Updated PHPUnit to version 7 + gh-24 + gh-42 + gh-85 + gh-83 + gh-71 #134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
108b658
e93c8ed
e50e288
35daa0a
bf6ef57
13d2653
4567e20
6453c4b
dd8b8fe
5546eae
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ Makefile.in | |
/config.nice | ||
/config.status | ||
/config.sub | ||
/configure.ac | ||
/configure.in | ||
/libtool | ||
/ltmain.sh | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.PHONY: test | ||
|
||
all: package | ||
|
||
package: | ||
git clone https://github.com/packpack/packpack.git packpack | ||
packpack/packpack | ||
|
||
test: | ||
curl -s https://packagecloud.io/install/repositories/tarantool/1_10/script.deb.sh | sudo bash | ||
sudo apt install tarantool | ||
phpize && ./configure && make all && sudo make install | ||
sudo pip install PyYAML | ||
./test-run.py |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,18 +95,20 @@ ZEND_EXTERN_MODULE_GLOBALS(tarantool); | |
|
||
typedef struct tarantool_object { | ||
struct tarantool_connection { | ||
char *host; | ||
int port; | ||
char *login; | ||
char *passwd; | ||
/* physical url, that's used for connection in raw PHP obtained | ||
* from parsed url by `tarantool_url_write_php_format` */ | ||
char *url; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it wroth to comment purpose of
|
||
/* parsed url, after have user/password/... | ||
* obtained from user string by `tarantool_url_parse` */ | ||
struct tarantool_url *url_parsed; | ||
php_stream *stream; | ||
struct tarantool_schema *schema; | ||
smart_string *value; | ||
struct tp *tps; | ||
char *greeting; | ||
char *salt; | ||
/* Only for persistent connections */ | ||
char *orig_login; | ||
char *orig_user; | ||
char *suffix; | ||
int suffix_len; | ||
zend_string *persistent_id; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Default port is 3303 as I see in src/tarantool_url.c.