- Revision
- 11126
- Author
- dan
- Date
- 2006-07-11 12:02:59 -0700 (Tue, 11 Jul 2006)
Log Message
On winXP do_tests.sh -t (single test option) was finding and running the new tests (tools/cats directory) instead of (tools/QATestScript directory). Changing the cygpath option (invoked only when OS is cygwin) from -w to -m creates paths with forward slashes that the following grep _doesn't_ interpret as escape chars like it was with the -w. Thanks to bear for help on this.
Modified Paths
Diff
Modified: trunk/chandler/tools/do_tests.sh (11125 => 11126)
--- trunk/chandler/tools/do_tests.sh 2006-07-11 19:01:40 UTC (rev 11125) +++ trunk/chandler/tools/do_tests.sh 2006-07-11 19:02:59 UTC (rev 11126) @@ -196,8 +196,8 @@ for test in $DIRS ; do NEWCATS=tools/cats if [ "$OSTYPE" = "cygwin" ]; then - TESTNAME=`cygpath -w $test` - NEWCATS=`cygpath -w $NEWCATS` + TESTNAME=`cygpath -m $test` + NEWCATS=`cygpath -m $NEWCATS` else TESTNAME=$test fi
_______________________________________________ Commits mailing list [email protected] http://lists.osafoundation.org/mailman/listinfo/commits
