aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml2
-rwxr-xr-xautotests/run-tests.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c8ea0d95..67ef5ac5 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -217,7 +217,7 @@ jobs:
QT_LOGGING_RULES: 'quotient.main.debug=true;quotient.jobs.debug=true;quotient.events.debug=true'
QT_MESSAGE_PATTERN: '%{time h:mm:ss.zzz}|%{category}|%{if-debug}D%{endif}%{if-info}I%{endif}%{if-warning}W%{endif}%{if-critical}C%{endif}%{if-fatal}F%{endif}|%{message}'
run: |
- ctest --test-dir $BUILD_PATH --output-on-failure
+ autotests/run-tests.sh --test-dir $BUILD_PATH --output-on-failure
[[ -z "$TEST_USER" ]] || \
LD_LIBRARY_PATH=$LIB_PATH \
$VALGRIND quotest "$TEST_USER" "$TEST_PWD" quotest-gha '#quotest:matrix.org' "$QUOTEST_ORIGIN"
diff --git a/autotests/run-tests.sh b/autotests/run-tests.sh
index b49f37a1..adfb4ec1 100755
--- a/autotests/run-tests.sh
+++ b/autotests/run-tests.sh
@@ -18,6 +18,6 @@ docker exec synapse /bin/sh -c 'register_new_matrix_user --admin -u bob -p secre
echo Register carl
docker exec synapse /bin/sh -c 'register_new_matrix_user --admin -u carl -p secret -c /data/homeserver.yaml https://localhost:8008'
-cd build/ && GTEST_COLOR=1 ctest --verbose
+GTEST_COLOR=1 ctest --verbose "$@"
rm -rf ./data/*
docker rm -f synapse 2>&1>/dev/null