Displaying 3 results from an estimated 3 matches for "5e27ea5".
2018 Aug 12
0
[PATCH nbdkit 08/10] freebsd: In scripts use 'env bash' instead of '/bin/bash'.
...git a/tests/make-pki.sh b/tests/make-pki.sh
index 413d898..bba92f7 100755
--- a/tests/make-pki.sh
+++ b/tests/make-pki.sh
@@ -1,4 +1,4 @@
-#!/bin/bash -
+#!/usr/bin/env bash
# nbdkit
# Copyright (C) 2017 Red Hat Inc.
# All rights reserved.
diff --git a/tests/make-psk.sh b/tests/make-psk.sh
index 5e27ea5..4c4a648 100755
--- a/tests/make-psk.sh
+++ b/tests/make-psk.sh
@@ -1,4 +1,4 @@
-#!/bin/bash -
+#!/usr/bin/env bash
# nbdkit
# Copyright (C) 2018 Red Hat Inc.
# All rights reserved.
diff --git a/tests/test-blocksize.sh b/tests/test-blocksize.sh
index e008f5e..de407c5 100755
--- a/tests/test-bloc...
2018 Jun 25
1
[PATCH v2 nbdkit] tls: Implement Pre-Shared Keys (PSK)
v2:
* Improved documentation.
* Added a test (interop with qemu client).
2018 Aug 12
13
[PATCH nbdkit 00/10] FreeBSD support.
With these patches, a majority of tests pass. The notable
things which are still broken:
- Because FreeBSD links /home -> /usr/home, $(pwd) gives a different
result from realpath(2). Therefore some tests which implicitly
rely on (eg) a plugin which calls nbdkit_realpath internally and
then checking that path against $(pwd) fail.
- Shebangs (#!) don't seem to work the same way