~ubuntu-branches/debian/sid/glusterfs/sid

« back to all changes in this revision

Viewing changes to tests/bugs/bug-873549.t

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2014-04-22 10:00:41 UTC
  • mfrom: (1.3.25)
  • Revision ID: package-import@ubuntu.com-20140422100041-6mur2ttyvb8zzpfq
Tags: 3.5.0-1
* New upstream release.
  - Rewrite patch 01-spelling-error.
  - Adjust lintian overrides.
  - Install new files.
  - The offical tarball is not properly generated, hack it around.
  - Add symlink from fusermount-glusterfs manpage to mount.glusterfs.
  - Move gsync-sync-gfid from /usr/share to /usr/lib.
  - Add benchmarking directory.
* Remove old versioned build dependencies and build depend on libglib2.0-dev.
* Add lintian override for possible-gpl-code-linked-with-openssl. It is the
  same false positive like with the gluster-server package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
. $(dirname $0)/../include.rc
 
4
 
 
5
cleanup;
 
6
 
 
7
TEST glusterd -LDEBUG;
 
8
TEST pidof glusterd;
 
9
TEST $CLI volume info;
 
10
 
 
11
TEST $CLI volume create $V0 $H0:$B0/${V0}{1,2};
 
12
 
 
13
TEST $CLI volume set $V0 performance.cache-size 512MB
 
14
TEST $CLI volume start $V0
 
15
TEST $CLI volume statedump $V0 all
 
16
 
 
17
cleanup;