[jbossts-issues] [JBoss JIRA] (JBTM-1283) narayana.sh calls mvn directly, should be build.sh

Tom Jenkinson (JIRA) jira-events at lists.jboss.org
Thu Oct 4 06:16:03 EDT 2012


Tom Jenkinson created JBTM-1283:
-----------------------------------

             Summary: narayana.sh calls mvn directly, should be build.sh
                 Key: JBTM-1283
                 URL: https://issues.jboss.org/browse/JBTM-1283
             Project: JBoss Transaction Manager
          Issue Type: Feature Request
      Security Level: Public (Everyone can see)
          Components: Testing, XTS
            Reporter: Tom Jenkinson
            Assignee: Paul Robinson


The script does this:
function xts_as_tests {
  echo "#-1. XTS AS Integration Test"
  mvn -f ${WORKSPACE}/jboss-as/testsuite/integration/xts/pom.xml -Pxts.integration.tests.profile "$@" test
  [ $? = 0 ] || fatal "XTS AS Integration Test failed"
}

Should probably be this:
function xts_as_tests {
  echo "#-1. XTS AS Integration Test"
  ./build.sh -f ${WORKSPACE}/jboss-as/testsuite/integration/xts/pom.xml -Pxts.integration.tests.profile "$@" test
  [ $? = 0 ] || fatal "XTS AS Integration Test failed"
}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the jbossts-issues mailing list