aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/time/zoneinfo_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/time/zoneinfo_test.go')
-rw-r--r--libgo/go/time/zoneinfo_test.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/libgo/go/time/zoneinfo_test.go b/libgo/go/time/zoneinfo_test.go
index 03f54a6..ede5330 100644
--- a/libgo/go/time/zoneinfo_test.go
+++ b/libgo/go/time/zoneinfo_test.go
@@ -9,6 +9,16 @@ import (
"time"
)
+func TestVersion3(t *testing.T) {
+ t.Skip("gccgo does not use the zip file")
+ time.ForceZipFileForTesting(true)
+ defer time.ForceZipFileForTesting(false)
+ _, err := time.LoadLocation("Asia/Jerusalem")
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
// Test that we get the correct results for times before the first
// transition time. To do this we explicitly check early dates in a
// couple of specific timezones.