jl165 merging heads
[LibreOffice.git] / testautomation / framework / optional / includes / filedlg_reserved_names_unix.inc
blobaf6e67b53ce78cf2d3897ab69f1625429688b749
1 'encoding UTF-8  Do not remove or change this line!
2 '**************************************************************************
3 ' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 ' Copyright 2000, 2010 Oracle and/or its affiliates.
7 ' OpenOffice.org - a multi-platform office productivity suite
9 ' This file is part of OpenOffice.org.
11 ' OpenOffice.org is free software: you can redistribute it and/or modify
12 ' it under the terms of the GNU Lesser General Public License version 3
13 ' only, as published by the Free Software Foundation.
15 ' OpenOffice.org is distributed in the hope that it will be useful,
16 ' but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ' GNU Lesser General Public License version 3 for more details
19 ' (a copy is included in the LICENSE file that accompanied this code).
21 ' You should have received a copy of the GNU Lesser General Public License
22 ' version 3 along with OpenOffice.org.  If not, see
23 ' <http://www.openoffice.org/license.html>
24 ' for a copy of the LGPLv3 License.
26 '/************************************************************************
28 '* owner : gregor.hartmann@oracle.com
30 '* short description : check the internal file dialog ( extended tests )
32 '\******************************************************************************
34 testcase tSaveReservedNamesUNIX()
36     printlog( "Names that are reserved on WINDOWS but are OK on UNIX" ) 
37     
38     if ( gPlatGroup = "w95" ) then
39         printlog( "Test not relevant for Windows/DOS family of OSes" )
40         goto endsub
41     endif
42     
43     dim cStrangeName as string
44     dim irc as integer
45     dim iCurrentDocType as integer
46     
47     for iCurrentDocType = 1 to 2 
48     
49         printlog( "" )
50         printlog( "Document Type is: " & hNumericDocType( iCurrentDocType ) )
51         
52         irc = hSaveLoadDelSuccess( "NUL" , true )
53         if ( irc <> 0 ) then warnlog( "failed" )
55         irc = hSaveLoadDelSuccess( "CLOCK$" , true )
56         if ( irc <> 0 ) then warnlog( "failed" )
58         irc = hSaveLoadDelSuccess( "CON" , true )
59         if ( irc <> 0 ) then warnlog( "failed" )
61         irc = hSaveLoadDelSuccess( "PRN" , true )
62         if ( irc <> 0 ) then warnlog( "failed" )
64         irc = hSaveLoadDelSuccess( "AUX" , true )
65         if ( irc <> 0 ) then warnlog( "failed" )
67         irc = hSaveLoadDelSuccess( "LPT1" , true )
68         if ( irc <> 0 ) then warnlog( "failed" )
70         irc = hSaveLoadDelSuccess( "COM1" , true )
71         if ( irc <> 0 ) then warnlog( "failed" )
72         
73     next iCurrentDocType
75 endcase