LCOV - code coverage report
Current view: top level - pebble/internal/testutils - duration.go (source / functions) Hit Total Coverage
Test: 2024-06-20 08:16Z 71d59d67 - meta test only.lcov Lines: 0 8 0.0 %
Date: 2024-06-20 08:17:31 Functions: 0 0 -

          Line data    Source code
       1             : // Copyright 2024 The LevelDB-Go and Pebble Authors. All rights reserved. Use
       2             : // of this source code is governed by a BSD-style license that can be found in
       3             : // the LICENSE file.
       4             : 
       5             : package testutils
       6             : 
       7             : import (
       8             :         "runtime"
       9             :         "testing"
      10             :         "time"
      11             : 
      12             :         "github.com/stretchr/testify/require"
      13             : )
      14             : 
      15             : // DurationIsAtLeast verifies that the given duration is at least the given
      16             : // value.
      17           0 : func DurationIsAtLeast(t testing.TB, d, minValue time.Duration) {
      18           0 :         t.Helper()
      19           0 :         if runtime.GOOS == "windows" && minValue < 10*time.Millisecond {
      20           0 :                 // Windows timer precision is coarse (on the order of 1 millisecond) and can
      21           0 :                 // cause the duration for short operations to be 0.
      22           0 :                 return
      23           0 :         }
      24           0 :         require.GreaterOrEqual(t, d, minValue)
      25             : }

Generated by: LCOV version 1.14