* soft-fp/op-4.h: Update from glibc.
[official-gcc.git] / libgo / go / regexp / exec2_test.go
blob7b86b41156e17a684ad0321191b5f08c53f4e8d7
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 // +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")