Fix BenchmarkExtendMatch to honor the testdata flag.
diff --git a/snappy_test.go b/snappy_test.go
index f4813f4..ce3f08e 100644
--- a/snappy_test.go
+++ b/snappy_test.go
@@ -1306,7 +1306,8 @@
 func Benchmark_ZFlat11(b *testing.B) { benchFile(b, 11, false) }
 
 func BenchmarkExtendMatch(b *testing.B) {
-	src, err := ioutil.ReadFile(goldenText)
+	tDir := filepath.FromSlash(*testdataDir)
+	src, err := ioutil.ReadFile(filepath.Join(tDir, goldenText))
 	if err != nil {
 		b.Fatalf("ReadFile: %v", err)
 	}