2012-11-08 09:04:27 -08:00
|
|
|
// run arg1 arg2
|
2012-09-23 13:16:14 -04:00
|
|
|
|
2008-06-24 15:31:03 -07:00
|
|
|
// Copyright 2009 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.
|
|
|
|
|
2012-02-19 13:19:43 +11:00
|
|
|
// Test os.Args.
|
|
|
|
|
2008-06-24 15:31:03 -07:00
|
|
|
package main
|
|
|
|
|
2009-05-08 15:21:41 -07:00
|
|
|
import "os"
|
|
|
|
|
2008-06-24 15:31:03 -07:00
|
|
|
func main() {
|
2009-05-08 15:21:41 -07:00
|
|
|
if len(os.Args) != 3 {
|
2008-08-11 22:07:49 -07:00
|
|
|
panic("argc")
|
2008-06-24 15:31:03 -07:00
|
|
|
}
|
2009-05-08 15:21:41 -07:00
|
|
|
if os.Args[1] != "arg1" {
|
2008-08-11 22:07:49 -07:00
|
|
|
panic("arg1")
|
2008-06-24 15:31:03 -07:00
|
|
|
}
|
2009-05-08 15:21:41 -07:00
|
|
|
if os.Args[2] != "arg2" {
|
2008-08-11 22:07:49 -07:00
|
|
|
panic("arg2")
|
2008-06-24 15:31:03 -07:00
|
|
|
}
|
|
|
|
}
|