From fb8ab5604b61b5cc503661e0a77334e5952e1744 Mon Sep 17 00:00:00 2001 From: Will Woods Date: Fri, 25 Sep 2009 13:55:39 -0400 Subject: add package install + bootloader tests --- populate-db.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/populate-db.py b/populate-db.py index b97767f..f9b4917 100644 --- a/populate-db.py +++ b/populate-db.py @@ -40,6 +40,14 @@ rats_tests = [ 'Check that anaconda can detect the presence of disk devices', 'http://fedoraproject.org/wiki/QA:Anaconda_storage_probe_test_case'), +('Anaconda package installation', + 'Check that anaconda is able to install packages to disk', + 'http://fedoraproject.org/wiki/QA:Anaconda_package_install_test_case'), + +('Anaconda bootloader setup', + 'Check that anaconda can set up the bootloader', + 'http://fedoraproject.org/wiki/QA:Anaconda_bootloader_setup_test_case'), + ('X startup/basic display configuration', 'Check that Xorg can detect and configure the video controller and monitor', 'http://fedoraproject.org/wiki/QA:X_basic_display_test_case'), @@ -72,6 +80,7 @@ def setup_database(): from israwhidebroken import model # Add tests to the test table + # XXX force test IDs? for (n, sd, u) in rats_tests: exists = model.Test.select(model.Test.q.name==n) if exists.count() == 0: -- cgit