A small patch I'd like to apply to 'master' to cleanup output generated while scheduling jobs.
* 0001-Disable-execution-of-depcheck-and-anaconda-until-the.patch
Disable 'depcheck' and 'anaconda' tests. I think we ideally wouldn't want these tests in the git 'master' repo until they are complete. Either way, I'd like to disable execution of these tests since it fills up the logs with errors like the following.
Error: Can't evaluate test 'depcheck': [Errno 2] No such file or directory: +'/usr/share/autotest/client/site_tests/depcheck/control.autoqa' Error: Can't evaluate test 'anaconda': [Errno 2] No such file or directory: +'/usr/share/autotest/client/site_tests/anaconda/control.autoqa'
I'd prefer updating the method used by the 'autoqa' script to find applicable tests. My initial thought would be to adjust 'autoqa' so it finds all sub-directories under 'tests/' that contain a control (or control.autoqa) file. The current method only allows for one-level deep of tests. That will need to change at some point, but for now it's more invasive that I'd like.
If no thoughts concerns, I'll push this into master later this week.
Thanks, James
--- tests/anaconda/control.autoqa | 1 + tests/depcheck/control.autoqa | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) create mode 100644 tests/anaconda/control.autoqa create mode 100644 tests/depcheck/control.autoqa
diff --git a/tests/anaconda/control.autoqa b/tests/anaconda/control.autoqa new file mode 100644 index 0000000..e3a5a54 --- /dev/null +++ b/tests/anaconda/control.autoqa @@ -0,0 +1 @@ +execute = False diff --git a/tests/depcheck/control.autoqa b/tests/depcheck/control.autoqa new file mode 100644 index 0000000..e3a5a54 --- /dev/null +++ b/tests/depcheck/control.autoqa @@ -0,0 +1 @@ +execute = False
seems OK to me ----- Original Message ----- From: "James Laska" jlaska@redhat.com To: autoqa-devel@lists.fedorahosted.org Sent: Tuesday, November 30, 2010 2:36:13 PM GMT +01:00 Amsterdam / Berlin / Bern / Rome / Stockholm / Vienna Subject: [PATCH] Disable execution of depcheck and anaconda until they are ready
--- tests/anaconda/control.autoqa | 1 + tests/depcheck/control.autoqa | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) create mode 100644 tests/anaconda/control.autoqa create mode 100644 tests/depcheck/control.autoqa
diff --git a/tests/anaconda/control.autoqa b/tests/anaconda/control.autoqa new file mode 100644 index 0000000..e3a5a54 --- /dev/null +++ b/tests/anaconda/control.autoqa @@ -0,0 +1 @@ +execute = False diff --git a/tests/depcheck/control.autoqa b/tests/depcheck/control.autoqa new file mode 100644 index 0000000..e3a5a54 --- /dev/null +++ b/tests/depcheck/control.autoqa @@ -0,0 +1 @@ +execute = False
autoqa-devel@lists.fedorahosted.org