[JBoss JIRA] (AS7-2062) TS: Check clustering tests
by Ondrej Zizka (Created) (JIRA)
TS: Check clustering tests
--------------------------
Key: AS7-2062
URL: https://issues.jboss.org/browse/AS7-2062
Project: Application Server 7
Issue Type: Sub-task
Components: Test Suite
Reporter: Ondrej Zizka
Assignee: Ondrej Zizka
Stuart Douglas:
1) Clustering tests do not run, and as they require a different arquillian adaptor they must not be in the same maven module as other integration tests.
2) Compat tests do not run correctly. Even though they have a different hibernate version specified in the profile, when attempting to run alongside other tests the hibernate version will be overriden. Also as this modifies a build time dependency test classes need to be re-compiled each run, to make sure they are built against the correct hibernate version.
I'll merge our changes into Stuart's branch since moving poms and scripts is easier than moving Clustering and Compat dirs back to their original location.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 1 month
[JBoss JIRA] (AS7-2270) TS: Define testsuite acceptance test (a testsuite for the testsuite)
by Ondrej Zizka (Created) (JIRA)
TS: Define testsuite acceptance test (a testsuite for the testsuite)
--------------------------------------------------------------------
Key: AS7-2270
URL: https://issues.jboss.org/browse/AS7-2270
Project: Application Server 7
Issue Type: Sub-task
Components: Test Suite
Reporter: Ondrej Zizka
Assignee: Ondrej Zizka
Define a procedure to perform before committing something to the testsuite.
Create scripts to support way to tell whether given testsuite is okay to be committed.
E.g.
{code}
IN='-DallTests -Dinteg-tests -Dcluster-tests -Dbasic-tests -Dbenchmark-tests -Dsmoke-tests -Dstress-tests -Ddomain-tests -Dcompat-tests';
for GROUP in $(echo $IN | tr ";" "\n"); do
## Create results dir.
RES_DIR=~/work/AS7/res/$GROUP
mkdir -p $RES_DIR
## Run the testsuite.
./integration-tests.sh clean -DallTests;
./integration-tests.sh install $GROUP;
## Archive the reports.
for REPORT in `find testsuite -name 'TEST-*.xml' -or -name '*TestCase.txt' -or -name '*TestCase-output.txt'`; do
SUB_DIR=`dirname $REPORT | sed 's#testsuite/##' | sed 's#/target/surefire-reports##'`
mkdir -p $RES_DIR/$SUB_DIR
cp $REPORT $RES_DIR/$SUB_DIR
done
done
## Create a JUnitDiff report.
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 1 month