summaryrefslogtreecommitdiff
path: root/lib/diskio/kmp_test.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-01-01 21:12:41 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2023-01-01 22:42:08 -0700
commit5edd0d7be38595c4777d5130ca20f907d8a74963 (patch)
tree6abc0ad25c22bb6da565e0ca15cdfc97bd6427e7 /lib/diskio/kmp_test.go
parent0df7a38046acf81b3e785526e7065775d058dd36 (diff)
lint: Turn on paralleltest
Diffstat (limited to 'lib/diskio/kmp_test.go')
-rw-r--r--lib/diskio/kmp_test.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/diskio/kmp_test.go b/lib/diskio/kmp_test.go
index 59b6224..4d4b3be 100644
--- a/lib/diskio/kmp_test.go
+++ b/lib/diskio/kmp_test.go
@@ -1,4 +1,4 @@
-// Copyright (C) 2022 Luke Shumaker <lukeshu@lukeshu.com>
+// Copyright (C) 2022-2023 Luke Shumaker <lukeshu@lukeshu.com>
//
// SPDX-License-Identifier: GPL-2.0-or-later
@@ -14,6 +14,7 @@ import (
)
func TestBuildKMPTable(t *testing.T) {
+ t.Parallel()
substr := SliceSequence[int64, byte]([]byte("ababaa"))
table, err := buildKMPTable[int64, byte](substr)
require.NoError(t, err)
@@ -81,6 +82,7 @@ func (re RESeq) Get(i int64) (byte, error) {
}
func TestKMPWildcard(t *testing.T) {
+ t.Parallel()
type testcase struct {
InStr string
InSubstr string
@@ -111,6 +113,7 @@ func TestKMPWildcard(t *testing.T) {
for tcName, tc := range testcases {
tc := tc
t.Run(tcName, func(t *testing.T) {
+ t.Parallel()
matches, err := IndexAll[int64, byte](
StringSequence[int64](tc.InStr),
RESeq(tc.InSubstr))