You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
376 B
22 lines
376 B
2 months ago
|
# Tests for getopt
|
||
|
|
||
|
Run: ../obj/ucw/getopt-t -a -b --longc 2819 -d -a 1 2 3
|
||
|
Out: option a
|
||
|
option b
|
||
|
option c with value `2819'
|
||
|
option d with value `-a'
|
||
|
3 nonoption arguments
|
||
|
reset
|
||
|
option a
|
||
|
option b
|
||
|
option c with value `2819'
|
||
|
option d with value `-a'
|
||
|
3 nonoption arguments
|
||
|
|
||
|
Run: ../obj/ucw/getopt-t -a -x
|
||
|
Out: option a
|
||
|
unknown option
|
||
|
reset
|
||
|
option a
|
||
|
unknown option
|