File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ function os::util::curl_etcd() {
181
181
-out " ${etcd_client_cert_p12} " \
182
182
-password " pass:${etcd_client_cert_p12_password} "
183
183
fi
184
- b
184
+
185
185
curl --fail --silent --cacert " ${ca_bundle} " \
186
186
--cert " ${etcd_client_cert_p12} :${etcd_client_cert_p12_password} " " ${full_url} "
187
187
else
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ tests=( $(go run "${OS_ROOT}/hack/listtests.go" -prefix="${OS_GO_PACKAGE}/${pack
112
112
ret=0
113
113
test_result=" ok"
114
114
pushd " ${OS_ROOT} /${package} " & > /dev/null
115
- test_start_time=$( date +%s%3N )
115
+ test_start_time=$( date +%s)
116
116
for test in " ${tests[@]} " ; do
117
117
for(( i= 0 ;i< ${loop} ;i+= 1 )) ; do
118
118
if ! (exectest " ${test} " ${@: 2} ); then
@@ -121,10 +121,10 @@ for test in "${tests[@]}"; do
121
121
fi
122
122
done
123
123
done
124
- test_end_time=$( date +%s%3N )
124
+ test_end_time=$( date +%s)
125
125
test_duration=$(( test_end_time - test_start_time))
126
126
127
- echo " ${test_result} github.com/openshift/origin/test/integration $(( test_duration / 1000 )) .$(( test_duration % 1000 )) s " >> " ${JUNIT_REPORT_OUTPUT:-/ dev/ null} "
127
+ echo " ${test_result} github.com/openshift/origin/test/integration $(( test_duration)) .000s " >> " ${JUNIT_REPORT_OUTPUT:-/ dev/ null} "
128
128
129
129
popd & > /dev/null
130
130
You can’t perform that action at this time.
0 commit comments