You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: worker/submit_result
+11-8Lines changed: 11 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -5,22 +5,25 @@
5
5
# Parameter $1 - BuildBot Build number of the ReactOS build that has been tested.
6
6
# Parameter $2 - BuildBot "reason" property.
7
7
# Parameter $3 - JIRA Attachment ID of the patch file (this parameter can be evaluated as $ATTACHMENT_ID inside config.inc to set different sourceids for regular and patched builds)
8
-
ATTACHMENT_ID=$3
8
+
BUILDNO="$1"
9
+
REASON="$2"
10
+
ATTACHMENT_ID="$3"
9
11
source ../../config.inc
10
12
11
-
if [ "$1"="" ];then
13
+
if [ "${BUILDNO}"="" ];then
12
14
echo"Please specify the build number!"
13
15
exit 1
14
16
fi
15
17
16
-
echo"* Transferring winetest results for build $1."
18
+
echo"* Transferring winetest results for build ${BUILDNO}."
0 commit comments