We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64a1462 commit 3a95b0cCopy full SHA for 3a95b0c
3 files changed
tests/10_basic.tst
@@ -3,7 +3,7 @@
3
source "$(dirname "$0")/testhelpers.sh"
4
5
function setup() {
6
- mount_sparsebundle
+ read -r mount_dir dmg_file < <(mount_sparsebundle)
7
}
8
9
function test_dmg_has_expected_size() {
tests/20_allow_other.tst
- mount_sparsebundle -o allow_other
+ read -r mount_dir dmg_file < <(mount_sparsebundle -o allow_other)
function test_dmg_has_correct_permissions() {
tests/testhelpers.sh
@@ -9,4 +9,6 @@ function mount_sparsebundle() {
kill -0 $pid >/dev/null 2>&1
10
test -f $dmg_file && break || sleep 0.1
11
done
12
+
13
+ echo $mount_dir "$mount_dir/sparsebundle.dmg"
14
0 commit comments