summaryrefslogtreecommitdiffstats
path: root/639
diff options
context:
space:
mode:
authorVijay Bellur <vijay@gluster.com>2011-03-07 10:03:15 +0530
committerVijay Bellur <vijay@gluster.com>2011-03-07 10:04:24 +0530
commit914f0aef201b0b3b5709460c9da0262244f280aa (patch)
tree5fe36ab4ce8dd01c78228a0f262f2cbcabcf455a /639
parente460b7a3d828ab43a6fd9d4abdb96109661d30b1 (diff)
moved old files to legacy
Signed-off by: Raghavendra Bhat <raghavendrabhat@gluster.com>
Diffstat (limited to '639')
-rw-r--r--639/regr/spec_files/client1.vol14
-rw-r--r--639/regr/spec_files/server1.vol38
-rwxr-xr-x639/regr/testcase33
3 files changed, 0 insertions, 85 deletions
diff --git a/639/regr/spec_files/client1.vol b/639/regr/spec_files/client1.vol
deleted file mode 100644
index 72d8df7..0000000
--- a/639/regr/spec_files/client1.vol
+++ /dev/null
@@ -1,14 +0,0 @@
-volume client1
- type protocol/client
- option transport-type tcp
- option remote-host 127.0.0.1
- option transport.socket.remote-port 7777
- option remote-subvolume brick1
-end-volume
-
-volume writebehind
- type performance/write-behind
- option cache-size 4MB
- option flush-behind on
- subvolumes client1
-end-volume \ No newline at end of file
diff --git a/639/regr/spec_files/server1.vol b/639/regr/spec_files/server1.vol
deleted file mode 100644
index ccaa925..0000000
--- a/639/regr/spec_files/server1.vol
+++ /dev/null
@@ -1,38 +0,0 @@
-volume posix1
- type storage/posix
- option directory /home/raghu/work/git.regression/639/regr/export/export1
-end-volume
-
-
-volume locks
- type features/posix-locks
- subvolumes posix1
-end-volume
-
-volume iot
- type performance/io-threads
- option thread-count 8
- subvolumes locks
-end-volume
-
-volume writebehind
- type performance/write-behind
- option cache-size 4MB
- subvolumes iot
-end-volume
-
-volume brick1
- type performance/read-ahead
- option page-count 4
- option force-atime-update off
- subvolumes writebehind
-end-volume
-
-volume server
- type protocol/server
- option transport-type tcp
- option transport.socket.listen-port 7777
- subvolumes brick1
- option auth.addr.brick1.allow *
-end-volume
-
diff --git a/639/regr/testcase b/639/regr/testcase
deleted file mode 100755
index 7af0c6f..0000000
--- a/639/regr/testcase
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/bash
-
-description="# Write-behind at serverside causes data corruption"
-comments="# Write-behind translator loaded in server volfile causes data corruption"
-
-
-source ../../init
-
-start_glusterfs
-
-sleep 2
-
-cd $MOUNTDIR/client1
-dd if=/dev/urandom of=$MOUNTDIR/random bs=1M count=10 2>1 1>/dev/null
-dd if=$MOUNTDIR/random of=$MOUNTDIR/client1/random bs=1M count=10 2>1 1>/dev/null
-gfs_md5sum=$(md5sum $MOUNTDIR/client1/random | cut -f 1 -d" ")
-other_md5sum=$(md5sum $MOUNTDIR/random | cut -f 1 -d" ")
-
-if [ $gfs_md5sum == $other_md5sum ] ; then
- ok $description
- comment $comments
-else
- not_ok $description
- comment $comments
-fi
-
-rm $MOUNTDIR/random >/dev/null
-rm $MOUNTDIR/client1/random >/dev/null
-
-cd - >/dev/null
-
-cleanup_glusterfs
-