adoroszlai commented on code in PR #5323:
URL: https://github.com/apache/ozone/pull/5323#discussion_r1331436401
##########
hadoop-ozone/dev-support/checks/unit.sh:
##########
@@ -16,4 +16,4 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
CHECK=unit
-source "${DIR}/junit.sh" -pl \!:ozone-integration-test,\!:mini-chaos-tests
-DexcludedGroups=native "$@"
+source "${DIR}/junit.sh" -pl \!:ozone-integration-test,\!:mini-chaos-tests
-DexcludedGroups=native | unhealthy "$@"
Review Comment:
Need to quote the parameter value, as `|` is a special symbol for the shell,
too. And the category is needed for JUnit4.
```suggestion
source "${DIR}/junit.sh" -pl \!:ozone-integration-test,\!:mini-chaos-tests
-DexcludedGroups="native | unhealthy | org.apache.ozone.test.UnhealthyTest" "$@"
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]