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, 14 insertions, 0 deletions
diff --git a/authz-test/src/main/scripts/csv b/authz-test/src/main/scripts/csv
new file mode 100644
index 00000000..e8712ce3
--- /dev/null
+++ b/authz-test/src/main/scripts/csv
@@ -0,0 +1,14 @@
+# /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