summaryrefslogtreecommitdiffstats
path: root/authz-test/src/main/scripts/csv
diff options
context:
space:
mode:
Diffstat (limited to 'authz-test/src/main/scripts/csv')
-rw-r--r--authz-test/src/main/scripts/csv14
1 files changed, 0 insertions, 14 deletions
diff --git a/authz-test/src/main/scripts/csv b/authz-test/src/main/scripts/csv
deleted file mode 100644
index e8712ce3..00000000
--- a/authz-test/src/main/scripts/csv
+++ /dev/null
@@ -1,14 +0,0 @@
-# /bin/bash
-cd TestCases
-if [ "$1" == "" ]; then
- DIRS=`ls -d TC*`
-else
- DIRS=$1
-fi
-
-echo '"Test Case","Description"'
-for DIR in $DIRS; do
- grep -h "^# $DIR" $DIR/[0-9]* | cut -d ' ' -f 2- | sed -e 's/ /,"/' -e 's/$/"/'
-done
-cd ..
-exit 0