summaryrefslogtreecommitdiffstats
path: root/tests/basic/gfapi/gfapi-trunc.sh
blob: ce604f4d098c4475e9ad5fadbac2f23a8cd3b45c (plain)
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

. $(dirname $0)/../../include.rc
. $(dirname $0)/../../volume.rc

TEST glusterd

TEST $CLI volume create $V0 localhost:$B0/brick1;
EXPECT 'Created' volinfo_field $V0 'Status';

TEST $CLI volume start $V0;
EXPECT 'Started' volinfo_field $V0 'Status';

logdir=`gluster --print-logdir`

# Special Snowflake NetBSD isn't set up to run tests that involve building
# executables.  Until that's fixed somewhere else, patch things up here.
if [ x"$OSTYPE" = x"NetBSD" ]; then
	mkdir -p $logdir
	extra_cflags="-I/build/install/include -L/build/install/lib"
fi

build_tester $(dirname $0)/gfapi-trunc.c -lgfapi -o $(dirname $0)/gfapi-trunc

TEST ./$(dirname $0)/gfapi-trunc $V0 $logdir/gfapi-trunc.log

cleanup_tester $(dirname $0)/gfapi-trunc

cleanup;