diff options
author | Aleš Mrázek <ales.mrazek@nic.cz> | 2024-08-02 18:53:50 +0200 |
---|---|---|
committer | Aleš Mrázek <ales.mrazek@nic.cz> | 2024-08-26 14:28:10 +0200 |
commit | 6eddeec96536df1b859d64b147f687519d5305d6 (patch) | |
tree | 8e415cc6bc8529a7939a718d3bd6da30bc0a89d5 /tests | |
parent | scripts/poe-tasks: kresctl task script added (diff) | |
download | knot-resolver-6eddeec96536df1b859d64b147f687519d5305d6.tar.xz knot-resolver-6eddeec96536df1b859d64b147f687519d5305d6.zip |
scripts: use env shebang
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/dnstap/src/dnstap-test/run.sh | 2 | ||||
m--------- | tests/integration/deckard | 0 | ||||
-rwxr-xr-x | tests/packaging/dependencies.py | 2 | ||||
-rwxr-xr-x | tests/packaging/interactive/cache-clear.sh | 2 | ||||
-rwxr-xr-x | tests/packaging/interactive/etag.sh | 2 | ||||
-rwxr-xr-x | tests/packaging/interactive/metrics.sh | 2 | ||||
-rwxr-xr-x | tests/packaging/interactive/reload.sh | 2 | ||||
-rwxr-xr-x | tests/packaging/interactive/workers.sh | 2 | ||||
-rwxr-xr-x | tests/packaging/knot-resolver.sh | 2 | ||||
-rwxr-xr-x | tests/packaging/kresctl.sh | 2 | ||||
-rwxr-xr-x | tests/packaging/systemd_service.sh | 2 |
11 files changed, 10 insertions, 10 deletions
diff --git a/tests/dnstap/src/dnstap-test/run.sh b/tests/dnstap/src/dnstap-test/run.sh index 70d82254..f1ed9fb2 100755 --- a/tests/dnstap/src/dnstap-test/run.sh +++ b/tests/dnstap/src/dnstap-test/run.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e KRESD_CMD=$1 MESON_BUILD_ROOT=$(pwd) diff --git a/tests/integration/deckard b/tests/integration/deckard -Subproject b5b338678d48a9807097000afe03ebfdf705f7a +Subproject 0e100ff13d4df3208d63b74ab4812b7e2a0c17b diff --git a/tests/packaging/dependencies.py b/tests/packaging/dependencies.py index 324ff30b..1262d2e1 100755 --- a/tests/packaging/dependencies.py +++ b/tests/packaging/dependencies.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import importlib import importlib.util diff --git a/tests/packaging/interactive/cache-clear.sh b/tests/packaging/interactive/cache-clear.sh index 377cf5d3..79d88a12 100755 --- a/tests/packaging/interactive/cache-clear.sh +++ b/tests/packaging/interactive/cache-clear.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # clear full cache kresctl cache clear diff --git a/tests/packaging/interactive/etag.sh b/tests/packaging/interactive/etag.sh index f14ef96a..3a9de46c 100755 --- a/tests/packaging/interactive/etag.sh +++ b/tests/packaging/interactive/etag.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e diff --git a/tests/packaging/interactive/metrics.sh b/tests/packaging/interactive/metrics.sh index 1ad48930..63ac035d 100755 --- a/tests/packaging/interactive/metrics.sh +++ b/tests/packaging/interactive/metrics.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e diff --git a/tests/packaging/interactive/reload.sh b/tests/packaging/interactive/reload.sh index 9daa1890..85bca315 100755 --- a/tests/packaging/interactive/reload.sh +++ b/tests/packaging/interactive/reload.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e diff --git a/tests/packaging/interactive/workers.sh b/tests/packaging/interactive/workers.sh index 4f54f6ae..b23afcdb 100755 --- a/tests/packaging/interactive/workers.sh +++ b/tests/packaging/interactive/workers.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash expected_workers="5" diff --git a/tests/packaging/knot-resolver.sh b/tests/packaging/knot-resolver.sh index 6aa38bde..2c252f7e 100755 --- a/tests/packaging/knot-resolver.sh +++ b/tests/packaging/knot-resolver.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # fail fast set -e diff --git a/tests/packaging/kresctl.sh b/tests/packaging/kresctl.sh index 579f1a10..aff02b6b 100755 --- a/tests/packaging/kresctl.sh +++ b/tests/packaging/kresctl.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # fail fast set -e diff --git a/tests/packaging/systemd_service.sh b/tests/packaging/systemd_service.sh index c6ac826b..9dec16ab 100755 --- a/tests/packaging/systemd_service.sh +++ b/tests/packaging/systemd_service.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # fail fast set -e |