diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2008-01-14 12:21:55 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2008-01-14 12:21:55 +0000 |
commit | 0d0db2c1763754992a7742e2ac9ed4dcb5b0f439 (patch) | |
tree | 8e82de7243f4d5acd18aa21dc17b84781ae1c0e1 /qadevOOo/runner/lib | |
parent | d33b179b8ed854be905f5037cc1cc879f850b44f (diff) |
INTEGRATION: CWS qadev31 (1.11.42); FILE MERGED
2007/11/05 19:56:44 cn 1.11.42.1: #i83329# exit program if platform is not supported
Diffstat (limited to 'qadevOOo/runner/lib')
-rw-r--r-- | qadevOOo/runner/lib/TestParameters.java | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/qadevOOo/runner/lib/TestParameters.java b/qadevOOo/runner/lib/TestParameters.java index c40190981a96..d5b5bab0b920 100644 --- a/qadevOOo/runner/lib/TestParameters.java +++ b/qadevOOo/runner/lib/TestParameters.java @@ -4,9 +4,9 @@ * * $RCSfile: TestParameters.java,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: kz $ $Date: 2005-11-02 17:43:53 $ + * last change: $Author: ihi $ $Date: 2008-01-14 13:21:55 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -313,6 +313,9 @@ public class TestParameters extends Hashtable { } else { operatingSystem = PropertyName.UNXSOLS; } + } else { + System.out.println("ERROR: not supported platform: " + osname); + System.exit(1); } return operatingSystem; } |