root/trunk/tsuite/clean_tsuite.pl

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#!/usr/bin/perl
2
3# This perl script cleans out the test suite after a test run, it will
4# only leave files that are part of the official distribution and the
5# cloudy executable (with a name ending in .exe) if that was present!
6#
7# Peter van Hoof
8
9if( -e "./auto/clean_tsuite.pl" ) {
10    system "cd auto ; ./clean_tsuite.pl";
11}
12else {
13    die "./auto/clean_tsuite.pl not found!";
14}
15if( -e "./slow/clean_tsuite.pl" ) {
16    system "cd slow ; ./clean_tsuite.pl";
17}
18else {
19    die "./slow/clean_tsuite.pl not found!";
20}
21unlink "Makefile";
Note: See TracBrowser for help on using the browser.