]> Cypherpunks.ru repositories - gostls13.git/blobdiff - test/env.go
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / test / env.go
index 721df55c0af9ccbb46bd88135256fdad49bd1326..1590f1e06bb1a83d0cfb7b5f137598d2d25db782 100644 (file)
@@ -4,6 +4,9 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
+// Test that environment variables are accessible through
+// package os.
+
 package main
 
 import (
@@ -12,18 +15,17 @@ import (
 )
 
 func main() {
-       ga, e0 := os.Getenverror("GOARCH")
-       if e0 != nil {
-               print("$GOARCH: ", e0.Error(), "\n")
-               os.Exit(1)
+       ga := os.Getenv("PATH")
+       if runtime.GOOS == "plan9" {
+               ga = os.Getenv("path")
        }
-       if ga != runtime.GOARCH {
-               print("$GOARCH=", ga, "!= runtime.GOARCH=", runtime.GOARCH, "\n")
+       if ga == "" {
+               print("PATH is empty\n")
                os.Exit(1)
        }
-       xxx, e1 := os.Getenverror("DOES_NOT_EXIST")
-       if e1 != os.ENOENV {
-               print("$DOES_NOT_EXIST=", xxx, "; err = ", e1.Error(), "\n")
+       xxx := os.Getenv("DOES_NOT_EXIST")
+       if xxx != "" {
+               print("$DOES_NOT_EXIST=", xxx, "\n")
                os.Exit(1)
        }
 }