Skip to content

Commit 9382488

Browse files
committed
HDDS-1764. Fix hidden errors in acceptance tests
Closes #1059
1 parent e0fa104 commit 9382488

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

hadoop-ozone/dist/src/main/compose/ozone-mr/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ services:
4949
- ./docker-config
5050
command: ["/opt/hadoop/bin/ozone","s3g"]
5151
scm:
52-
image: apache/ozone-runner:latest:${HADOOP_RUNNER_VERSION}
52+
image: apache/ozone-runner:${HADOOP_RUNNER_VERSION}
5353
hostname: scm
5454
volumes:
5555
- ../..:/opt/hadoop

hadoop-ozone/dist/src/main/compose/ozonesecure-mr/docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ services:
6464
- ./docker-config
6565
command: ["/opt/hadoop/bin/ozone","s3g"]
6666
scm:
67-
image: apache/ozone-runner:latest:${HADOOP_RUNNER_VERSION}
67+
image: apache/ozone-runner:${HADOOP_RUNNER_VERSION}
6868
hostname: scm
6969
volumes:
7070
- ../..:/opt/hadoop
@@ -120,4 +120,4 @@ services:
120120
- 4040:4040
121121
env_file:
122122
- docker-config
123-
command: ["watch","-n","100000","ls"]
123+
command: ["watch","-n","100000","ls"]

hadoop-ozone/dist/src/main/compose/test-all.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ for test in $(find "$SCRIPT_DIR" -name test.sh); do
3737
./test.sh
3838
ret=$?
3939
if [[ $ret -ne 0 ]]; then
40-
RESULT=-1
40+
RESULT=1
41+
echo "ERROR: Test execution of $(dirname "$test") is FAILED!!!!"
4142
fi
4243
RESULT_DIR="$(dirname "$test")/result"
4344
cp "$RESULT_DIR"/robot-*.xml "$ALL_RESULT_DIR"

0 commit comments

Comments
 (0)