File: 014

package info (click to toggle)
sheepdog 0.8.3-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,364 kB
  • ctags: 3,951
  • sloc: ansic: 30,552; sh: 3,573; perl: 2,924; asm: 453; makefile: 391; python: 192
file content (29 lines) | stat: -rwxr-xr-x 437 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash

# Test vdi setattr/getattr

. ./common

for i in `seq 0 5`; do
    _start_sheep $i
done

_wait_for_sheep 6

_cluster_format -c 2
_vdi_create test 4G

echo -n value > $STORE/tmp.dat

echo "key shouldn't be found"
$DOG vdi getattr test key

$DOG vdi setattr test key value
$DOG vdi getattr test key | diff - $STORE/tmp.dat

$DOG vdi setattr test key value -d

echo "key shouldn't be found"
$DOG vdi getattr test key

status=0