Add a benchmark for precompleted context creation
authorJoe Wreschnig <joe.wreschnig@gmail.com>
Sat, 13 Jun 2020 15:45:28 +0000 (17:45 +0200)
committerJoe Wreschnig <joe.wreschnig@gmail.com>
Sun, 14 Jun 2020 13:50:00 +0000 (15:50 +0200)
context_test.go

index a7b30a4..0fa10d7 100644 (file)
@@ -64,7 +64,7 @@ func TestCancelAfterSignal(t *testing.T) {
        assert.Equal(t, Error{syscall.SIGUSR2}, ctx.Err())
 }
 
-func TestImmediateCompletion(t *testing.T) {
+func TestPrecompleted(t *testing.T) {
        parent, cancel := context.WithCancel(context.Background())
        cancel()
        <-parent.Done()
@@ -120,3 +120,14 @@ func BenchmarkCanceledAsChild(b *testing.B) {
                <-children[i].Done()
        }
 }
+
+func BenchmarkPrecompleted(b *testing.B) {
+       parent, cancel := context.WithCancel(context.Background())
+       cancel()
+       <-parent.Done()
+       b.ResetTimer()
+       for i := 0; i < b.N; i++ {
+               ctx := UntilSignal(parent, syscall.SIGUSR2)
+               <-ctx.Done()
+       }
+}