diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-09-05 20:37:37 +0200 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2024-12-06 19:54:10 +0100 |
commit | ead814a0b0f64c572282b9e27a0a995893f10cf0 (patch) | |
tree | 6dcb92f5ecc2fb9a4a387a8089b798e2728c7c65 /test/TEST-04-JOURNAL | |
parent | Revert "journalctl: show coredumps again when --unit= is specified" (diff) | |
download | systemd-ead814a0b0f64c572282b9e27a0a995893f10cf0.tar.xz systemd-ead814a0b0f64c572282b9e27a0a995893f10cf0.zip |
test: Remove old bash test runner
We put a timeline of 257 to remove the old bash test runner so since
we're about to release 257, let's remove the old bash test runner in
favor of the meson + mkosi test runner.
Diffstat (limited to 'test/TEST-04-JOURNAL')
l--------- | test/TEST-04-JOURNAL/Makefile | 1 | ||||
-rwxr-xr-x | test/TEST-04-JOURNAL/test.sh | 29 |
2 files changed, 0 insertions, 30 deletions
diff --git a/test/TEST-04-JOURNAL/Makefile b/test/TEST-04-JOURNAL/Makefile deleted file mode 120000 index e9f93b1104..0000000000 --- a/test/TEST-04-JOURNAL/Makefile +++ /dev/null @@ -1 +0,0 @@ -../TEST-01-BASIC/Makefile
\ No newline at end of file diff --git a/test/TEST-04-JOURNAL/test.sh b/test/TEST-04-JOURNAL/test.sh deleted file mode 100755 index 01d0b66ee7..0000000000 --- a/test/TEST-04-JOURNAL/test.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env bash -# SPDX-License-Identifier: LGPL-2.1-or-later -set -e - -TEST_DESCRIPTION="Journal-related tests" - -# shellcheck source=test/test-functions -. "${TEST_BASE_DIR:?}/test-functions" - -test_append_files() { - local workspace="${1:?}" - local dropin_dir - - image_install curl setterm unzstd - image_install -o openssl - # Necessary for RH-based systems, otherwise MHD fails with: - # microhttpd: Failed to initialise TLS session. - image_install -o /etc/crypto-policies/back-ends/gnutls.config - - # Since we nuke the journal repeatedly during this test, let's redirect - # stdout/stderr to the console as well to make the test a bit more debug-able. - if ! get_bool "${TEST_SHELL:-}"; then - dropin_dir="${workspace:?}/etc/systemd/system/TEST-04-JOURNAL.service.d/" - mkdir -p "$dropin_dir" - printf '[Service]\nStandardOutput=journal+console\nStandardError=journal+console' >"$dropin_dir/99-stdout.conf" - fi -} - -do_test "$@" |