Kengo Seki created YETUS-134:
--------------------------------
Summary: asflicense test type should not be always added
Key: YETUS-134
URL: https://issues.apache.org/jira/browse/YETUS-134
Project: Yetus
Issue Type: Bug
Components: Test Patch
Reporter: Kengo Seki
This code is intended to determine if asflicense test should be enabled or not,
{code:title=dev-support/test-patch.d/asflicense.sh}
36 case ${BUILDTOOL} in
37 ant|gradle|maven)
38 add_test asflicense
39 ;;
40 *)
41 if [[ -f "${ASFLICENSE_RAT_JAR}" ]]; then
42 add_test asflicense
43 fi
44 ;;
45 esac
{code}
but it won't work as expected because of
{code:title=dev-support/test-patch.d/asflicense.sh}
19 add_test asflicense
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)