summaryrefslogtreecommitdiffstats
path: root/113
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 /113
parente460b7a3d828ab43a6fd9d4abdb96109661d30b1 (diff)
moved old files to legacy
Signed-off by: Raghavendra Bhat <raghavendrabhat@gluster.com>
Diffstat (limited to '113')
-rw-r--r--113/regr/spec_files/client1.vol30
-rw-r--r--113/regr/spec_files/server1.vol23
-rw-r--r--113/regr/spec_files/server2.vol23
-rw-r--r--113/regr/spec_files/server3.vol23
-rwxr-xr-x113/regr/testcase19
5 files changed, 0 insertions, 118 deletions
diff --git a/113/regr/spec_files/client1.vol b/113/regr/spec_files/client1.vol
deleted file mode 100644
index a493ee0..0000000
--- a/113/regr/spec_files/client1.vol
+++ /dev/null
@@ -1,30 +0,0 @@
-volume remote1
- type protocol/client
- option transport-type tcp/client
- option remote-port 9352
- option remote-host 127.0.0.1
- option remote-subvolume brick
-end-volume
-
-volume remote2
- type protocol/client
- option transport-type tcp/client
- option remote-port 9353
- option remote-host 127.0.0.1
- option remote-subvolume brick
-end-volume
-
-volume remote3
- type protocol/client
- option transport-type tcp/client
- option remote-port 9354
- option remote-host 127.0.0.1
- option remote-subvolume brick
-end-volume
-
-volume stripe
- type cluster/stripe
- option block-size 1MB
- subvolumes remote1 remote2 remote3
-end-volume
-
diff --git a/113/regr/spec_files/server1.vol b/113/regr/spec_files/server1.vol
deleted file mode 100644
index 3a28d72..0000000
--- a/113/regr/spec_files/server1.vol
+++ /dev/null
@@ -1,23 +0,0 @@
-volume posix
- type storage/posix
- option directory /share/tickets/113/regr/export/export1
-end-volume
-
-volume locks
- type features/locks
- subvolumes posix
-end-volume
-
-volume brick
- type performance/io-threads
- option thread-count 8
- subvolumes locks
-end-volume
-
-volume server
- type protocol/server
- option transport-type tcp/server
- option listen-port 9352
- option auth.addr.brick.allow *
- subvolumes brick
-end-volume
diff --git a/113/regr/spec_files/server2.vol b/113/regr/spec_files/server2.vol
deleted file mode 100644
index 0092b59..0000000
--- a/113/regr/spec_files/server2.vol
+++ /dev/null
@@ -1,23 +0,0 @@
-volume posix
- type storage/posix
- option directory /share/tickets/113/regr/export/export2
-end-volume
-
-volume locks
- type features/locks
- subvolumes posix
-end-volume
-
-volume brick
- type performance/io-threads
- option thread-count 8
- subvolumes locks
-end-volume
-
-volume server
- type protocol/server
- option transport-type tcp/server
- option listen-port 9353
- option auth.addr.brick.allow *
- subvolumes brick
-end-volume
diff --git a/113/regr/spec_files/server3.vol b/113/regr/spec_files/server3.vol
deleted file mode 100644
index b362c64..0000000
--- a/113/regr/spec_files/server3.vol
+++ /dev/null
@@ -1,23 +0,0 @@
-volume posix
- type storage/posix
- option directory /share/tickets/113/regr/export/export3
-end-volume
-
-volume locks
- type features/locks
- subvolumes posix
-end-volume
-
-volume brick
- type performance/io-threads
- option thread-count 8
- subvolumes locks
-end-volume
-
-volume server
- type protocol/server
- option transport-type tcp/server
- option listen-port 9354
- option auth.addr.brick.allow *
- subvolumes brick
-end-volume
diff --git a/113/regr/testcase b/113/regr/testcase
deleted file mode 100755
index 77e5442..0000000
--- a/113/regr/testcase
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-description="# (113) mkdir fails on stripe configuration"
-comments="# Simple stripe setup is used."
-
-source ../../init
-
-start_glusterfs
-
-sleep 5
-
-if [ $(mkdir $MOUNTDIR/client1/1 | grep "Software caused connection abort" | wc -l) -ne 0 ];then
- not_ok $description
- comment $comments
-else
- ok $description
-fi
-
-cleanup_glusterfs