Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/run-ci-blue-green-cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fi
TEST_CMD="$TEST_CMD -timeout=5m -tags extensible_load_manager -v -run TestBlueGreenMigrationTestSuite ./pulsar"

$TEST_CMD 2>&1 | tee $TEST_LOG
retval=$?
retval=${PIPESTATUS[0]}
if [ $retval -ne 0 ]; then
# Make it easier to find out which test failed
echo "Tests failed"
Expand Down
2 changes: 1 addition & 1 deletion scripts/run-ci-clustered.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fi
TEST_CMD="$TEST_CMD -timeout=5m -tags clustered -v -run 'Test.*ClusteredTestSuite|TestTransactionDisabled' -v ./pulsar"

$TEST_CMD 2>&1 | tee $TEST_LOG
retval=$?
retval=${PIPESTATUS[0]}
if [ $retval -ne 0 ]; then
# Make it easier to find out which test failed
echo "Tests failed"
Expand Down
2 changes: 1 addition & 1 deletion scripts/run-ci-extensible-load-manager.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fi
TEST_CMD="$TEST_CMD -timeout=5m -tags extensible_load_manager -v -run TestExtensibleLoadManagerTestSuite ./pulsar"

$TEST_CMD 2>&1 | tee $TEST_LOG
retval=$?
retval=${PIPESTATUS[0]}
if [ $retval -ne 0 ]; then
# Make it easier to find out which test failed
echo "Tests failed"
Expand Down
2 changes: 1 addition & 1 deletion scripts/run-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ fi
TEST_CMD="$TEST_CMD -timeout=20m -v ./..."

$TEST_CMD 2>&1 | tee $TEST_LOG
retval=$?
retval=${PIPESTATUS[0]}
if [ $retval -ne 0 ]; then
# Make it easier to find out which test failed
echo "Tests failed"
Expand Down
Loading