Displaying 2 results from an estimated 2 matches for "52af147".
2018 Aug 12
0
[PATCH nbdkit 08/10] freebsd: In scripts use 'env bash' instead of '/bin/bash'.
...ion-plugin.sh
index 6086807..379e53f 100755
--- a/tests/test-version-plugin.sh
+++ b/tests/test-version-plugin.sh
@@ -1,4 +1,4 @@
-#!/bin/bash -
+#!/usr/bin/env bash
# nbdkit
# Copyright (C) 2016 Red Hat Inc.
# All rights reserved.
diff --git a/tests/test-version.sh b/tests/test-version.sh
index 52af147..9bfcc9b 100755
--- a/tests/test-version.sh
+++ b/tests/test-version.sh
@@ -1,4 +1,4 @@
-#!/bin/bash -
+#!/usr/bin/env bash
# nbdkit
# Copyright (C) 2016 Red Hat Inc.
# All rights reserved.
diff --git a/tests/test-zero.sh b/tests/test-zero.sh
index 1f4549c..2c5cece 100755
--- a/tests/test-zero.s...
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