summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa
diff options
context:
space:
mode:
authorsangeeta jain <sangeeta.jain@intel.com>2019-03-14 12:31:17 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-03-18 11:12:00 +0000
commit5c5402bc6e6505da0203ca9245a3599bd4940dad (patch)
tree4274b0bde0601fd1f690330091a13276e3c2aec7 /meta/lib/oeqa
parente1136bae81672894a277512d7084d27f4e3416b9 (diff)
downloadopenembedded-core-contrib-5c5402bc6e6505da0203ca9245a3599bd4940dad.tar.gz
oeqa/manual/compliance-test.json: test id updated and missing test cases added
Two changes made in oeqa/manual/compliance-test.json: 1. All test id (eg. @alias) inside manual testcase file shall follow the same test id naming convention from oeqa automated tests (eg. selftest, runtime, sdk, etc), where the test id consists of <test_module>.<test_suite>.<test_function>. Furthermore, there shall be only 1 unique test_module per each manual testcases file. This file was using more than 1 unique test_module for testcases. Furthermore, some of the testcases were defined using different test_suite where it was not needed. This patch fix the manual testcases file to have only 1 unique test_module as well as test_suite to simplify test id naming. 2. Added 2 missing test cases for Beaglebone Stress Test. Signed-off-by: sangeeta jain <sangeeta.jain@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r--meta/lib/oeqa/manual/compliance-test.json60
1 files changed, 56 insertions, 4 deletions
diff --git a/meta/lib/oeqa/manual/compliance-test.json b/meta/lib/oeqa/manual/compliance-test.json
index 7adf8a1d9f..982f0b46cd 100644
--- a/meta/lib/oeqa/manual/compliance-test.json
+++ b/meta/lib/oeqa/manual/compliance-test.json
@@ -1,7 +1,7 @@
[
{
"test": {
- "@alias": "configuration.configuration.LTP_subset_test_suite",
+ "@alias": "compliance-test.compliance-test.LTP_subset_test_suite",
"author": [
{
"email": "corneliux.stoicescu@intel.com",
@@ -43,7 +43,7 @@
},
{
"test": {
- "@alias": "configuration.configuration.POSIX_subset_test_suite",
+ "@alias": "compliance-test.compliance-test.POSIX_subset_test_suite",
"author": [
{
"email": "corneliux.stoicescu@intel.com",
@@ -89,7 +89,7 @@
},
{
"test": {
- "@alias": "configuration.configuration.LSB_subset_test_suite",
+ "@alias": "compliance-test.compliance-test.LSB_subset_test_suite",
"author": [
{
"email": "corneliux.stoicescu@intel.com",
@@ -119,7 +119,7 @@
},
{
"test": {
- "@alias": "General_Runtime.General_Runtime.stress_test_-_Genericx86-64",
+ "@alias": "compliance-test.compliance-test.stress_test_-_Genericx86-64",
"author": [
{
"email": "corneliux.stoicescu@intel.com",
@@ -138,5 +138,57 @@
},
"summary": "stress_test_-_Genericx86-64"
}
+ },
+ {
+ "test": {
+ "@alias": "compliance-test.compliance-test.stress_test_-_- crashme_-_-Beaglebone",
+ "author": [
+ {
+ "email": "corneliux.stoicescu@intel.com",
+ "name": "corneliux.stoicescu@intel.com"
+ }
+ ],
+ "execution": {
+ "1": {
+ "action": " Get crashme from http://people.delphiforums.com/gjc/crashme.html",
+ "expected_results": ""
+ },
+ "2": {
+ "action": "Follow the setup steps on above URL, build crashme in target",
+ "expected_results": ""
+ },
+ "3": {
+ "action": " Run crashme for 24 hours",
+ "expected_results": "Target should not crash with the program."
+ }
+ },
+ "summary": "stress_test_-_crashme_-Beaglebone"
+ }
+ },
+ {
+ "test": {
+ "@alias": "compliance-test.compliance-test.stress_test_-_ltp_-Beaglebone",
+ "author": [
+ {
+ "email": "corneliux.stoicescu@intel.com",
+ "name": "corneliux.stoicescu@intel.com"
+ }
+ ],
+ "execution": {
+ "1": {
+ "action": "Build LTP with toolchain or in sdk image",
+ "expected_results": ""
+ },
+ "2": {
+ "action": "Copy LTP folder into target, for example, /opt/ltp. Modify script, testscripts/ltpstress.sh, set Iostat=1, NO_NETWORK=1",
+ "expected_results": ""
+ },
+ "3": {
+ "action": "cd testscripts/ && ./ltpstress.sh",
+ "expected_results": "This stress case will run for 24 hours Check the result\ntarget should not crash with the program "
+ }
+ },
+ "summary": "stress_test_-_-ltp_-Beaglebone"
}
+ }
] \ No newline at end of file