Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
6ee6d6ec
Commit
6ee6d6ec
authored
Jan 29, 2009
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add stack test
R=r DELTA=48 (48 added, 0 deleted, 0 changed) OCL=23715 CL=23732
parent
282bf8cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
0 deletions
+52
-0
stack.go
test/stack.go
+52
-0
No files found.
test/stack.go
0 → 100644
View file @
6ee6d6ec
// $G $D/$F.go && $L $F.$A && ./$A.out
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Try to tickle stack splitting bugs by doing
// go and defer at different stack depths.
package
main
type
T
[
20
]
int
;
func
g
(
c
chan
int
,
t
T
)
{
s
:=
0
;
for
i
:=
0
;
i
<
len
(
t
);
i
++
{
s
+=
t
[
i
];
}
c
<-
s
;
}
func
d
(
t
T
)
{
s
:=
0
;
for
i
:=
0
;
i
<
len
(
t
);
i
++
{
s
+=
t
[
i
];
}
if
s
!=
len
(
t
)
{
panicln
(
"bad defer"
,
s
);
}
}
var
c
=
make
(
chan
int
);
var
t
T
;
func
recur
(
n
int
)
{
go
g
(
c
,
t
);
s
:=
<-
c
;
if
s
!=
len
(
t
)
{
panicln
(
"bad go"
,
s
);
}
if
n
>
0
{
recur
(
n
-
1
);
}
defer
d
(
t
);
}
func
main
()
{
for
i
:=
0
;
i
<
len
(
t
);
i
++
{
t
[
i
]
=
1
;
}
recur
(
10000
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment