Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zircon
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
zircon
Commits
2839b1f5
Commit
2839b1f5
authored
10 years ago
by
Michael Gray
Browse files
Options
Downloads
Patches
Plain Diff
Extend overall timeouts for remote testing.
parent
c7f5604f
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
t/protocol_ae.t
+1
-1
1 addition, 1 deletion
t/protocol_ae.t
t/protocol_tk.t
+1
-1
1 addition, 1 deletion
t/protocol_tk.t
t/timestamp.t
+1
-1
1 addition, 1 deletion
t/timestamp.t
with
3 additions
and
3 deletions
t/protocol_ae.t
+
1
−
1
View file @
2839b1f5
...
...
@@ -67,7 +67,7 @@ sub zirpro_tt {
return
unless
$pid
;
register_kid
(
$pid
);
my
$timeout
=
AnyEvent
->
timer
(
after
=>
5
.000
,
cb
=>
sub
{
test_zap
('
safety timeout
')
});
my
$timeout
=
AnyEvent
->
timer
(
after
=>
10
.000
,
cb
=>
sub
{
test_zap
('
safety timeout
')
});
$server_cv
->
recv
;
is
(
scalar
@
{
$server
->
{
_msg
}},
1
,
'
one event logged by Server
')
...
...
This diff is collapsed.
Click to expand it.
t/protocol_tk.t
+
1
−
1
View file @
2839b1f5
...
...
@@ -73,7 +73,7 @@ sub zirpro_tt {
return
unless
$pid
;
register_kid
(
$pid
);
my
$timeout
=
$M
->
after
(
5
000
,
[
\
&
main::
my_test_zap
,
'
safety timeout
'
]);
my
$timeout
=
$M
->
after
(
10
000
,
[
\
&
main::
my_test_zap
,
'
safety timeout
'
]);
$M
->
waitVariable
(
$server
);
is
(
scalar
@$server
,
1
,
'
one event logged by Server
')
...
...
This diff is collapsed.
Click to expand it.
t/timestamp.t
+
1
−
1
View file @
2839b1f5
...
...
@@ -29,7 +29,7 @@ sub do_init {
my
@id
=
endpoint_pair
;
$M
->
clip_ids
(
@id
);
$M
->
after
(
5
000
,
sub
{
fail
("
whole-test timeout
");
$M
->
destroy
});
$M
->
after
(
10
000
,
sub
{
fail
("
whole-test timeout
");
$M
->
destroy
});
my
$handler
=
init_zircon_conn
(
$M
,
@id
);
$M
->
state_bump
(
new
=>
@id
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment