Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
epm-docker-test
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
epm-docker-test
Commits
7e7b7acd
Commit
7e7b7acd
authored
Apr 07, 2026
by
Ivan Mazhukin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix utility exit status
parent
1a26a6c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
13 deletions
+2
-13
epm-docker-test.sh
epm-docker-test.sh
+2
-13
No files found.
epm-docker-test.sh
View file @
7e7b7acd
...
...
@@ -708,7 +708,6 @@ run_for_system() {
fi
record_summary_result
"
$SYSTEM_IMAGE
"
"
$status
"
"
$LOG_FILE
"
return
"
$status
"
}
run_for_system_parallel
()
{
...
...
@@ -850,8 +849,6 @@ parse_args() {
main
()
{
local
system_image
local
status
=
0
local
run_status
local
total
local
index
=
0
...
...
@@ -864,7 +861,7 @@ main() {
fi
SYSTEM_IMAGE
=
"
${
TARGET_SYSTEMS
[0]
}
"
run_once
return
0
return
fi
build_target_systems
...
...
@@ -899,7 +896,6 @@ main() {
if
[[
-f
"
$result_dir
/
$i
.result"
]]
;
then
IFS
=
$'
\t
'
read
-r
sys res log <
"
$result_dir
/
$i
.result"
record_summary_result
"
$sys
"
"
$res
"
"
$log
"
((
res
==
0
))
||
status
=
"
$res
"
fi
done
...
...
@@ -907,18 +903,11 @@ main() {
else
for
system_image
in
"
${
TARGET_SYSTEMS
[@]
}
"
;
do
((
index +
=
1
))
if
run_for_system
"
$system_image
"
"
$index
"
"
$total
"
;
then
run_status
=
0
else
run_status
=
$?
status
=
"
$run_status
"
fi
run_for_system
"
$system_image
"
"
$index
"
"
$total
"
||
true
done
fi
print_summary_table
return
"
$status
"
}
main
"
$@
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment