Skip to content

Commit

Permalink
Try to fix complaince suite oddities
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@17037 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Sep 3, 2013
1 parent 83b099e commit 4aee6b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Examples/ComplianceSuite.mos
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ echo '<?xml version=\"1.0\" encoding=\"UTF-8\"?>' > \"$OMCRESULT\"
echo '<testsuites name=\"'`cat version`'\">' >> \"$OMCRESULT\"
for f in `ls ModelicaCompliance.*.res | sed 's/[.][^.]*[.]res$//' | sort -u`; do
echo \"<testsuite name=\\\"$f\\\">\" >> \"$OMCRESULT\"
for t in `ls $f.*.res | grep \"$f[.][^.]*[.]res\"`; do
echo `cat $t` >> \"$OMCRESULT\"
for t in `ls \"$f\".*.res | grep \"$f[.][^.]*[.]res\"`; do
echo `cat \"$t\"` >> \"$OMCRESULT\"
done
echo \"</testsuite>\" >> \"$OMCRESULT\"
done
Expand Down

0 comments on commit 4aee6b7

Please sign in to comment.