Code Review
/
csit.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
f76cae5
)
fix(perpatch): Do not save non-essential files
04/43804/1
author
Vratko Polak
<
[email protected]
>
Mon, 6 Oct 2025 11:08:23 +0000
(13:08 +0200)
committer
Vratko Polak
<
[email protected]
>
Mon, 6 Oct 2025 12:55:01 +0000
(12:55 +0000)
We already delete output.xml, nobody needs report.html.
Change-Id: I39f70549e802a0d897634907dda335913f0005e3
Signed-off-by: Vratko Polak <
[email protected]
>
(cherry picked from commit
f30705823446cc35010842a7245f13794cc686c9
)
resources/libraries/bash/function/per_patch.sh
patch
|
blob
|
history
diff --git
a/resources/libraries/bash/function/per_patch.sh
b/resources/libraries/bash/function/per_patch.sh
index
745cf33
..
b40c54b
100644
(file)
--- a/
resources/libraries/bash/function/per_patch.sh
+++ b/
resources/libraries/bash/function/per_patch.sh
@@
-222,7
+222,7
@@
function move_test_results () {
cd "${VPP_DIR}" || die "Change directory command failed."
TARGET="$(readlink -f "$1")"
mkdir -p "${TARGET}" || die "Directory creation failed."
- file_list=("
output.xml" "log.html" "report
.html" "tests")
+ file_list=("
log
.html" "tests")
for filename in "${file_list[@]}"; do
mv "${ARCHIVE_DIR}/${filename}" "${TARGET}/${filename}" || die
done