test: use env shebang in all bash scripts

This allows the scripts to be executed on systems that don't have bash
in /bin. This fixes "make check".
This commit is contained in:
Miroslav Lichvar 2021-03-03 12:09:38 +01:00
parent f60410016a
commit 9339766bfe
57 changed files with 57 additions and 57 deletions

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
# Run the unit and simulation tests with different compiler sanitizers # Run the unit and simulation tests with different compiler sanitizers
# and under valgrind # and under valgrind

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common
test_start "NTP eras" test_start "NTP eras"

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common
test_start "minpoll/maxpoll options" test_start "minpoll/maxpoll options"

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common
test_start "iburst option" test_start "iburst option"

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common
test_start "initstepslew directive" test_start "initstepslew directive"

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common
test_start "driftfile directive" test_start "driftfile directive"

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common
test_start "SHM refclock" test_start "SHM refclock"

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common
test_start "makestep directive" test_start "makestep directive"

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common
test_start "presend option" test_start "presend option"

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common
test_start "fallback drift" test_start "fallback drift"

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common
test_start "maxdelay options" test_start "maxdelay options"

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common
test_start "interleaved mode" test_start "interleaved mode"

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common
test_start "ratelimit directive" test_start "ratelimit directive"

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common
test_start "noclientlog option" test_start "noclientlog option"

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
. ./test.common . ./test.common

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
print_help() { print_help() {
echo "$1 [-a] [-i ITERATIONS] [-m MAXFAILS] [-s SEED] [TEST]..." echo "$1 [-a] [-i ITERATIONS] [-m MAXFAILS] [-s SEED] [TEST]..."