|
Revision 2242, 0.5 kB
(checked in by peter, 4 months ago)
|
|
tsuite/clean_tsuite.pl:
tsuite/run_parallel.pl:
Add script to run the auto and slow test suite simultaneously in parallel.
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | if( -e "./auto/clean_tsuite.pl" ) { |
|---|
| 10 | system "cd auto ; ./clean_tsuite.pl"; |
|---|
| 11 | } |
|---|
| 12 | else { |
|---|
| 13 | die "./auto/clean_tsuite.pl not found!"; |
|---|
| 14 | } |
|---|
| 15 | if( -e "./slow/clean_tsuite.pl" ) { |
|---|
| 16 | system "cd slow ; ./clean_tsuite.pl"; |
|---|
| 17 | } |
|---|
| 18 | else { |
|---|
| 19 | die "./slow/clean_tsuite.pl not found!"; |
|---|
| 20 | } |
|---|
| 21 | unlink "Makefile"; |
|---|