You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
354 B
Bash
13 lines
354 B
Bash
11 years ago
|
## Cleanup test objects
|
||
|
gvm uninstall tip > /dev/null 2>&1
|
||
|
gvm uninstall go1.1.1 > /dev/null 2>&1
|
||
|
gvm uninstall go1.2.2 > /dev/null 2>&1
|
||
|
#######################
|
||
|
|
||
|
gvm install tip #status=0
|
||
|
gvm list #status=0; match=/tip/
|
||
|
gvm install go1.1.1 #status=0
|
||
|
gvm list #status=0; match=/go1.1.1/
|
||
|
gvm install go1.2.2 #status=0
|
||
|
gvm list #status=0; match=/go1.2.2/
|