summaryrefslogtreecommitdiffstats
path: root/445/regr/testcase
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 /445/regr/testcase
parente460b7a3d828ab43a6fd9d4abdb96109661d30b1 (diff)
moved old files to legacy
Signed-off by: Raghavendra Bhat <raghavendrabhat@gluster.com>
Diffstat (limited to '445/regr/testcase')
-rwxr-xr-x445/regr/testcase32
1 files changed, 0 insertions, 32 deletions
diff --git a/445/regr/testcase b/445/regr/testcase
deleted file mode 100755
index 5b90126..0000000
--- a/445/regr/testcase
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/bash
-
-description="# Bug 445 - Transport endpoint is not connected "
-comments="# Touching a file works, writing actual data to it doesn't."
-
-
-source ../../init
-
-start_glusterfs
-
-sleep 2
-echo "this is file content" > $MOUNTDIR/client1/testing.txt
-
-retval=$?
-
-
-
-if [ $retval -eq 0 ]
-then
- ok $description
- comment $comments
-
-else
- not_ok $description
- comment $comments
-
-fi
-
-
-rm $MOUNTDIR/client1/testing.txt >/dev/null
-cleanup_glusterfs
-