summaryrefslogtreecommitdiffstats
path: root/tests/basic/gfapi/bug1291259.t
blob: 999cda2da3aeb4464cf482d468fc264cddf7c99a (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
30
31
32
#!/bin/bash

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

cleanup;

TEST glusterd

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

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

logdir=`gluster --print-logdir`

## Enable Upcall cache-invalidation feature
TEST $CLI volume set $V0 features.cache-invalidation on;

TEST build_tester $(dirname $0)/bug1291259.c -lgfapi

TEST ./$(dirname $0)/bug1291259 $H0 $V0 $logdir/bug1291259.log

cleanup_tester $(dirname $0)/bug1291259

TEST $CLI volume stop $V0
TEST $CLI volume delete $V0

cleanup;
#G_TESTDEF_TEST_STATUS_CENTOS6=BAD_TEST,BUG=1405301
#G_TESTDEF_TEST_STATUS_NETBSD7=BAD_TEST,BUG=1405301
3f022ae99c1664fbdbc9e6623903ba843af'>cli/src/cli.c
+++ b/cli/src/cli.c
@@ -340,6 +340,12 @@ cli_opt_parse (char *opt, struct cli_state *state)
return -1;
}
+ oarg = strtail (opt, "remote-host=");
+ if (oarg) {
+ state->remote_host = oarg;
+ return 0;
+ }
+
return -1;
}
@@ -391,6 +397,9 @@ cli_state_init (struct cli_state *state)
struct cli_cmd_tree *tree = NULL;
int ret = 0;
+
+ state->remote_host = "localhost";
+
tree = &state->tree;
tree->state = state;
@@ -439,14 +448,14 @@ cli_rpc_init (struct cli_state *state)
if (!op