Skip to content

Commit 6b39a50

Browse files
committed
unifying dockerfiles
1 parent a82300a commit 6b39a50

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

coreutils-8.25.Dockerfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,7 @@ CMD echo "Starting coverage gathering" \
8080
&& cp -r "$COVERAGE_DATA_DIR"/* "/coreutils/obj-cov/src/" \
8181
&& echo "Running gcov" \
8282
&& gcov "$UTIL" > "/out/cov.txt" \
83-
&& echo "Coverage gathering done" \
84-
&& tar czf "/out/src-gcov.tar.gz" "/coreutils/obj-cov/src"
83+
&& echo "Coverage gathering done"
8584

8685
# ========================================
8786
# exec
@@ -116,8 +115,7 @@ CMD bash ./analyze.sh \
116115
--skip-klee-analysis "${SKIP_KLEE_ANALYSIS}" \
117116
--klee-max-time "${KLEE_MAX_TIME_MIN}" \
118117
--out-dir ./out \
119-
"${UTIL}" \
120-
&& tar czf ./out/src-llvm.tar.gz ./coreutils-llvm/obj-llvm/src
118+
"${UTIL}"
121119

122120
# to keep files output by klee, run the container as follows:
123121
# `docker run [docker_args] \

coreutils-9.4.Dockerfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,7 @@ CMD echo "Starting coverage gathering" \
8080
&& cp -r "$COVERAGE_DATA_DIR"/* "/coreutils/obj-cov/src/" \
8181
&& echo "Running gcov" \
8282
&& gcov "$UTIL" > "/out/cov.txt" \
83-
&& echo "Coverage gathering done" \
84-
&& tar czf "/out/src-gcov.tar.gz" "/coreutils/obj-cov/src"
83+
&& echo "Coverage gathering done"
8584

8685
# ========================================
8786
# exec
@@ -116,8 +115,7 @@ CMD bash ./analyze.sh \
116115
--skip-klee-analysis "${SKIP_KLEE_ANALYSIS}" \
117116
--klee-max-time "${KLEE_MAX_TIME_MIN}" \
118117
--out-dir ./out \
119-
"${UTIL}" \
120-
&& tar czf ./out/src-llvm.tar.gz ./coreutils-llvm/obj-llvm/src
118+
"${UTIL}"
121119

122120
# to keep files output by klee, run the container as follows:
123121
# `docker run [docker_args] \

0 commit comments

Comments
 (0)