diff options
author | Ryan Moeller <[email protected]> | 2020-01-15 19:23:29 -0500 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2020-01-15 16:23:29 -0800 |
commit | 1bb5f5e2b47336ddc8d22833801eadbee8ce21e6 (patch) | |
tree | 250673e9c4f334a423a487fce89bcfe78295349d /tests/zfs-tests | |
parent | 6f481612f37a4cffaff142b80f6a4c37257406c6 (diff) |
ZTS: Fix ksh path in btree tests
Every other ksh script has /bin/ksh in the shebang.
If we're going to assume a path, we can at least be consistent.
Reviewed-by: John Kennedy <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Kjeld Schouten <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Igor Kozhukhov <[email protected]>
Signed-off-by: Ryan Moeller <[email protected]>
Closes #9845
Diffstat (limited to 'tests/zfs-tests')
-rwxr-xr-x | tests/zfs-tests/tests/functional/btree/btree_negative.ksh | 2 | ||||
-rwxr-xr-x | tests/zfs-tests/tests/functional/btree/btree_positive.ksh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/zfs-tests/tests/functional/btree/btree_negative.ksh b/tests/zfs-tests/tests/functional/btree/btree_negative.ksh index 399cd5ee9..cefcbc51e 100755 --- a/tests/zfs-tests/tests/functional/btree/btree_negative.ksh +++ b/tests/zfs-tests/tests/functional/btree/btree_negative.ksh @@ -1,4 +1,4 @@ -#!/usr/bin/ksh -p +#!/bin/ksh -p # # This file and its contents are supplied under the terms of the diff --git a/tests/zfs-tests/tests/functional/btree/btree_positive.ksh b/tests/zfs-tests/tests/functional/btree/btree_positive.ksh index ec58d37a8..badbac2fa 100755 --- a/tests/zfs-tests/tests/functional/btree/btree_positive.ksh +++ b/tests/zfs-tests/tests/functional/btree/btree_positive.ksh @@ -1,4 +1,4 @@ -#!/usr/bin/ksh -p +#!/bin/ksh -p # # This file and its contents are supplied under the terms of the |