Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
3fb5f329
Commit
3fb5f329
authored
Feb 19, 2012
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test/chan: document tests
R=golang-dev, bradfitz CC=golang-dev
https://golang.org/cl/5677094
parent
13514d4e
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
36 additions
and
13 deletions
+36
-13
test/chan/doubleselect.go
test/chan/doubleselect.go
+2
-1
test/chan/fifo.go
test/chan/fifo.go
+1
-1
test/chan/goroutines.go
test/chan/goroutines.go
+2
-2
test/chan/nonblock.go
test/chan/nonblock.go
+2
-2
test/chan/perm.go
test/chan/perm.go
+4
-0
test/chan/powser1.go
test/chan/powser1.go
+2
-0
test/chan/powser2.go
test/chan/powser2.go
+6
-3
test/chan/select.go
test/chan/select.go
+2
-0
test/chan/select2.go
test/chan/select2.go
+2
-0
test/chan/select3.go
test/chan/select3.go
+1
-1
test/chan/select4.go
test/chan/select4.go
+2
-0
test/chan/select5.go
test/chan/select5.go
+4
-1
test/chan/select6.go
test/chan/select6.go
+1
-1
test/chan/sieve1.go
test/chan/sieve1.go
+2
-0
test/chan/sieve2.go
test/chan/sieve2.go
+2
-0
test/chan/zerosize.go
test/chan/zerosize.go
+1
-1
No files found.
test/chan/doubleselect.go
View file @
3fb5f329
...
...
@@ -4,8 +4,9 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// T
his test is designed to flush out the case where
two cases of a select can
// T
est the situation in which
two cases of a select can
// both end up running. See http://codereview.appspot.com/180068.
package
main
import
(
...
...
test/chan/fifo.go
View file @
3fb5f329
...
...
@@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//
Verify
that unbuffered channels act as pure fifos.
//
Test
that unbuffered channels act as pure fifos.
package
main
...
...
test/chan/goroutines.go
View file @
3fb5f329
...
...
@@ -4,8 +4,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//
make a lot of goroutines, threaded together
.
// tear them down cleanly.
//
Torture test for goroutines
.
//
Make a lot of goroutines, threaded together, and
tear them down cleanly.
package
main
...
...
test/chan/nonblock.go
View file @
3fb5f329
...
...
@@ -4,8 +4,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//
Verify channel operations that test for blocking
// Use several sizes and types of operands
//
Test channel operations that test for blocking.
// Use several sizes and types of operands
.
package
main
...
...
test/chan/perm.go
View file @
3fb5f329
...
...
@@ -4,6 +4,10 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Test various correct and incorrect permutations of send-only,
// receive-only, and bidirectional channels.
// Does not compile.
package
main
var
(
...
...
test/chan/powser1.go
View file @
3fb5f329
...
...
@@ -4,6 +4,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Test concurrency primitives: power series.
// Power series package
// A power series is a channel, along which flow rational
// coefficients. A denominator of zero signifies the end.
...
...
test/chan/powser2.go
View file @
3fb5f329
...
...
@@ -4,15 +4,18 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Test concurrency primitives: power series.
// Like powser1.go but uses channels of interfaces.
// Has not been cleaned up as much as powser1.go, to keep
// it distinct and therefore a different test.
// Power series package
// A power series is a channel, along which flow rational
// coefficients. A denominator of zero signifies the end.
// Original code in Newsqueak by Doug McIlroy.
// See Squinting at Power Series by Doug McIlroy,
// http://www.cs.bell-labs.com/who/rsc/thread/squint.pdf
// Like powser1.go but uses channels of interfaces.
// Has not been cleaned up as much as powser1.go, to keep
// it distinct and therefore a different test.
package
main
...
...
test/chan/select.go
View file @
3fb5f329
...
...
@@ -4,6 +4,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Test simple select.
package
main
var
counter
uint
...
...
test/chan/select2.go
View file @
3fb5f329
...
...
@@ -4,6 +4,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Test that selects do not consume undue memory.
package
main
import
"runtime"
...
...
test/chan/select3.go
View file @
3fb5f329
...
...
@@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Test
s verifying
the semantics of the select statement
// Test the semantics of the select statement
// for basic empty/non-empty cases.
package
main
...
...
test/chan/select4.go
View file @
3fb5f329
...
...
@@ -4,6 +4,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file
// Test that a select statement proceeds when a value is ready.
package
main
func
f
()
*
int
{
...
...
test/chan/select5.go
View file @
3fb5f329
...
...
@@ -7,7 +7,10 @@
// license that can be found in the LICENSE file.
// Generate test of channel operations and simple selects.
// Only doing one real send or receive at a time, but phrased
// The output of this program is compiled and run to do the
// actual test.
// Each test does only one real send or receive at a time, but phrased
// in various ways that the compiler may or may not rewrite
// into simpler expressions.
...
...
test/chan/select6.go
View file @
3fb5f329
...
...
@@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Issue 2075
//
Test for select:
Issue 2075
// A bug in select corrupts channel queues of failed cases
// if there are multiple waiters on those channels and the
// select is the last in the queue. If further waits are made
...
...
test/chan/sieve1.go
View file @
3fb5f329
...
...
@@ -4,6 +4,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Test concurrency primitives: classical inefficient concurrent prime sieve.
// Generate primes up to 100 using channels, checking the results.
// This sieve consists of a linear chain of divisibility filters,
// equivalent to trial-dividing each n by all primes p ≤ n.
...
...
test/chan/sieve2.go
View file @
3fb5f329
...
...
@@ -4,6 +4,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Test concurrency primitives: prime sieve of Eratosthenes.
// Generate primes up to 100 using channels, checking the results.
// This sieve is Eratosthenesque and only considers odd candidates.
// See discussion at <http://blog.onideas.ws/eratosthenes.go>.
...
...
test/chan/zerosize.go
View file @
3fb5f329
...
...
@@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//
Making channels of a zero-sized type should not panic
.
//
Test making channels of a zero-sized type
.
package
main
...
...
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