c++/modules: Stream warning suppressions [PR115757]
[official-gcc.git] / libgo / go / regexp / exec2_test.go
blobb6dac4a058f0cecdba4bca8f35fbd433c4c6a334
1 // Copyright 2013 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 //go:build !race
7 package regexp
9 import (
10 "testing"
13 // This test is excluded when running under the race detector because
14 // it is a very expensive test and takes too long.
15 func TestRE2Exhaustive(t *testing.T) {
16 if testing.Short() {
17 t.Skip("skipping TestRE2Exhaustive during short test")
19 testRE2(t, "testdata/re2-exhaustive.txt.bz2")