Skip to content

Commit cfd1e57

Browse files
committed
test2
Signed-off-by: Andreas Heinrich <andreas.heinrich@rwth-aachen.de>
1 parent fb12f8f commit cfd1e57

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.ci/build-kit/scripts/compile.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/sh
22

3+
exit 0
34
cmake \
45
-B "$EXT_MOUNT/build" \
56
-S "$EXT_MOUNT/source" \

.ci/build-kit/scripts/install.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/sh
22

3+
exit 0
34
ninja -C "$EXT_MOUNT/build" install
45
retVal=$?
56

.ci/build-kit/scripts/run_coverage.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/sh
22

3+
exit 0
34
ninja \
45
-C "$EXT_MOUNT/build" \
56
ocpp_gcovr_coverage
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/bin/sh
22

3+
echo "crash for testing"
4+
exit 5
5+
36
ninja -C "$EXT_MOUNT/build" test
47
retVal=$?
58

@@ -10,6 +13,3 @@ if [ $retVal -ne 0 ]; then
1013
echo "Unit tests failed with return code $retVal"
1114
exit $retVal
1215
fi
13-
14-
echo "crash for testing"
15-
exit 5

0 commit comments

Comments
 (0)