summaryrefslogtreecommitdiffstats
path: root/authz-test/TestSuite/csv
diff options
context:
space:
mode:
Diffstat (limited to 'authz-test/TestSuite/csv')
-rw-r--r--authz-test/TestSuite/csv13
1 files changed, 13 insertions, 0 deletions
diff --git a/authz-test/TestSuite/csv b/authz-test/TestSuite/csv
new file mode 100644
index 00000000..a6a0b305
--- /dev/null
+++ b/authz-test/TestSuite/csv
@@ -0,0 +1,13 @@
+# /bin/bash
+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