search for: 3a4490f

Displaying 2 results from an estimated 2 matches for "3a4490f".

Did you mean: 3544909
2018 Aug 12
0
[PATCH nbdkit 08/10] freebsd: In scripts use 'env bash' instead of '/bin/bash'.
...ests/test-ip.sh b/tests/test-ip.sh index 4bd841e..12448c4 100755 --- a/tests/test-ip.sh +++ b/tests/test-ip.sh @@ -1,4 +1,4 @@ -#!/bin/bash - +#!/usr/bin/env bash # nbdkit # Copyright (C) 2016-2018 Red Hat Inc. # All rights reserved. diff --git a/tests/test-layers.sh b/tests/test-layers.sh index 3a4490f..f89eda3 100755 --- a/tests/test-layers.sh +++ b/tests/test-layers.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-log.sh b/tests/test-log.sh index 8948c2c..7b2c7be 100755 --- a/tests/test-log.sh +++...
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