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