summaryrefslogtreecommitdiff
path: root/libgo/go/time/zoneinfo_android_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/time/zoneinfo_android_test.go')
-rw-r--r--libgo/go/time/zoneinfo_android_test.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/libgo/go/time/zoneinfo_android_test.go b/libgo/go/time/zoneinfo_android_test.go
new file mode 100644
index 0000000000..ba065d10a6
--- /dev/null
+++ b/libgo/go/time/zoneinfo_android_test.go
@@ -0,0 +1,18 @@
+// Copyright 2016 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package time_test
+
+import (
+ "testing"
+ . "time"
+)
+
+func TestAndroidTzdata(t *testing.T) {
+ ForceAndroidTzdataForTest(true)
+ defer ForceAndroidTzdataForTest(false)
+ if _, err := LoadLocation("America/Los_Angeles"); err != nil {
+ t.Error(err)
+ }
+}