search for: 7211958

Displaying 3 results from an estimated 3 matches for "7211958".

2018 Aug 01
1
[PATCH nbdkit] tests: Cancel trap in cleanup function to avoid recursive traps.
...che.sh +++ b/tests/test-cache.sh @@ -61,6 +61,8 @@ pid="$(cat cache.pid)" cleanup () { status=$? + trap '' INT QUIT TERM EXIT ERR + echo $0: cleanup: exit code $status kill $pid rm -f $files diff --git a/tests/test-cow.sh b/tests/test-cow.sh index 01d2d04..7211958 100755 --- a/tests/test-cow.sh +++ b/tests/test-cow.sh @@ -62,6 +62,8 @@ pid="$(cat cow.pid)" cleanup () { status=$? + trap '' INT QUIT TERM EXIT ERR + echo $0: cleanup: exit code $status kill $pid rm -f $files diff --git a/tests/test-fua.sh b/tests/test-f...
2018 Aug 12
0
[PATCH nbdkit 08/10] freebsd: In scripts use 'env bash' instead of '/bin/bash'.
...-captive.sh b/tests/test-captive.sh index aca735b..d993ad5 100755 --- a/tests/test-captive.sh +++ b/tests/test-captive.sh @@ -1,4 +1,4 @@ -#!/bin/bash - +#!/usr/bin/env bash # nbdkit # Copyright (C) 2014 Red Hat Inc. # All rights reserved. diff --git a/tests/test-cow.sh b/tests/test-cow.sh index 7211958..5bde829 100755 --- a/tests/test-cow.sh +++ b/tests/test-cow.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-cxx.sh b/tests/test-cxx.sh index 8f3e79b..1852565 100755 --- a/tests/test-cxx.sh +++ b/tes...
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