From Fedora Project Wiki

Revision as of 22:09, 2 August 2011 by Athmane (talk | contribs) (fixed =)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Description

This test verifies basic yum functionality including searching, installing, updating, removing, and group functions.


How to test

  1. Ensure you have yum installed with: rpm -q yum
  2. Search for a package: yum search ksh
  3. List a package: yum list ksh
  4. Install an older package: rpm -e ksh; yum --disablerepo=updates install ksh
  5. Upgrade a package: rpm -e ksh; yum update ksh
  6. Remove a package: yum remove ksh
  7. Group list: yum grouplist
  8. Group install: yum groupinstall <some group>
  9. Group remove: yum groupremove <some group>

Expected Results

  1. All commands above should finish as expected. There should not be a traceback.