#!/bin/bash -ie #Note - ensure that the -e flag is set to properly set the $? status if any command fails # Since we are using the system jruby, we need to make sure our jvm process # uses at least 1g of memory, If we don't do this we can get OOM issues when # installing gems. See https://github.com/elastic/logstash/issues/5179 export JRUBY_OPTS="-J-Xmx1g" export SPEC_OPTS="--order rand --format documentation" export CI=true SELECTED_TEST_SUITE=$1 if [[ $SELECTED_TEST_SUITE == $"core-fail-fast" ]]; then echo "Running Java and Ruby unit tests, but will fail fast" echo "Running test:install-core" rake test:install-core echo "Running test:core-fail-fast" rake test:core-fail-fast elif [[ $SELECTED_TEST_SUITE == $"all" ]]; then echo "Running all plugins tests" echo "Running test:install-all" # Install all plugins in this logstash instance, including development dependencies rake test:install-all echo "Running test:plugins" # Run all plugins tests rake test:plugins elif [[ $SELECTED_TEST_SUITE == $"java" ]]; then echo "Running Java unit tests" echo "Running test:core-java" rake test:core-java elif [[ $SELECTED_TEST_SUITE == $"ruby" ]]; then echo "Running Ruby unit tests" echo "Running test:install-core" rake test:install-core echo "Running test:core-ruby" rake test:core-ruby else echo "Running Java and Ruby unit tests" echo "Running test:install-core" rake test:install-core echo "Running test:core" rake test:core fi