Blame tests/0_common/10_remove_32bitpkgs.sh
|
Karanbir Singh |
43deec |
#!/bin/sh
|
|
Karanbir Singh |
43deec |
|
|
Karanbir Singh |
2dd0be |
t_Log "Running $0 - test that all 32-bit rpms can be removed"
|
|
Karanbir Singh |
43deec |
|
|
Karanbir Singh |
43deec |
# only run this test on x86_64 machines!
|
|
Karanbir Singh |
43deec |
is64=$(uname -m|grep x86_64)
|
|
Karanbir Singh |
43deec |
|
|
Karanbir Singh |
2dd0be |
# This is a non-fatal status, so return PASS.
|
|
Karanbir Singh |
2dd0be |
[ $? -ne 0 ] && { t_Log 'Host is not 64bit, skipping.'; exit $PASS; }
|
|
Karanbir Singh |
43deec |
|
|
Karanbir Singh |
2dd0be |
t_RemovePackage *.i?86
|