File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 3535TEST_CMD=" $TEST_CMD -timeout=5m -tags extensible_load_manager -v -run TestBlueGreenMigrationTestSuite ./pulsar"
3636
3737$TEST_CMD 2>&1 | tee $TEST_LOG
38- retval=$?
38+ retval=${PIPESTATUS[0]}
3939if [ $retval -ne 0 ]; then
4040 # Make it easier to find out which test failed
4141 echo " Tests failed"
Original file line number Diff line number Diff line change 3535TEST_CMD=" $TEST_CMD -timeout=5m -tags clustered -v -run 'Test.*ClusteredTestSuite|TestTransactionDisabled' -v ./pulsar"
3636
3737$TEST_CMD 2>&1 | tee $TEST_LOG
38- retval=$?
38+ retval=${PIPESTATUS[0]}
3939if [ $retval -ne 0 ]; then
4040 # Make it easier to find out which test failed
4141 echo " Tests failed"
Original file line number Diff line number Diff line change 3535TEST_CMD=" $TEST_CMD -timeout=5m -tags extensible_load_manager -v -run TestExtensibleLoadManagerTestSuite ./pulsar"
3636
3737$TEST_CMD 2>&1 | tee $TEST_LOG
38- retval=$?
38+ retval=${PIPESTATUS[0]}
3939if [ $retval -ne 0 ]; then
4040 # Make it easier to find out which test failed
4141 echo " Tests failed"
Original file line number Diff line number Diff line change 4444TEST_CMD=" $TEST_CMD -timeout=20m -v ./..."
4545
4646$TEST_CMD 2>&1 | tee $TEST_LOG
47- retval=$?
47+ retval=${PIPESTATUS[0]}
4848if [ $retval -ne 0 ]; then
4949 # Make it easier to find out which test failed
5050 echo " Tests failed"
You can’t perform that action at this time.
0 commit comments