Skip to content

Commit b83d7b9

Browse files
committed
tests: Use /usr/bin/env bash instead of /bin/bash
Signed-off-by: Philipp Jungkamp <philipp.jungkamp@rwth-aachen.de>
1 parent 79d29ef commit b83d7b9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/integration/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
add_custom_target(run-integration-tests
88
COMMAND
9-
/bin/bash -o pipefail -c \"
9+
/usr/bin/env bash -o pipefail -c \"
1010
SRCDIR=${PROJECT_SOURCE_DIR}
1111
BUILDDIR=${PROJECT_BINARY_DIR}
1212
${PROJECT_SOURCE_DIR}/tools/integration-tests.sh 2>&1 | c++filt\"

tests/unit/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ target_link_libraries(unit-tests PUBLIC
2828

2929
add_custom_target(run-unit-tests
3030
COMMAND
31-
/bin/bash -o pipefail -c \"
31+
/usr/bin/env bash -o pipefail -c \"
3232
$<TARGET_FILE:unit-tests> 2>&1 | c++filt\"
3333
DEPENDS
3434
unit-tests

0 commit comments

Comments
 (0)