equal
deleted
inserted
replaced
|
1 # Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 # All rights reserved. |
|
3 # This component and the accompanying materials are made available |
|
4 # under the terms of "Eclipse Public License v1.0" |
|
5 # which accompanies this distribution, and is available |
|
6 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 # |
|
8 # Initial Contributors: |
|
9 # Nokia Corporation - initial contribution. |
|
10 # |
|
11 # Contributors: |
|
12 # |
|
13 # Description: |
|
14 # run smoke tests for the buildsystem |
|
15 # |
|
16 # each test should use the Test module |
|
17 # |
|
18 # Failing tests can be re-run individually in their own folder |
|
19 # if you need more detailed output to determine the fault. |
|
20 |
|
21 use strict; |
|
22 use Test::Harness; |
|
23 $Test::Harness::Verbose = 1; |
|
24 |
|
25 # a list of all the tests. |
|
26 my @all = ( |
|
27 'helloworld/test.pl' , |
|
28 'binaryvariation/test.pl' , |
|
29 'extensions/test.pl' |
|
30 ); |
|
31 |
|
32 runtests(@all); |
|
33 exit 0; |
|
34 |