Rename directory non_regression_tests to comparison_tests
[SXSI/xpathcomp.git] / tests / comparison_tests / rotate.sh
1 #!/bin/sh
2
3 cat "$1" | sed -e 's/,/ /g' | (
4 COUNT=""
5 MAT=""
6 SER=""
7 while read q num count mat ser
8 do
9 COUNT="$COUNT","$count"
10 MAT="$MAT","$mat"
11 SER="$SER","$ser"
12 done
13 echo "$COUNT"
14 echo "$MAT"
15 echo "$SER"
16 )