bump product version to 4.1.6.2
[LibreOffice.git] / scp2 / source / smoketest / smoketest.scp
blob9b932081e13658f16541097bb75d1304c4c435a8
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  */
10 #include "macros.inc"
12 Installation gid_Installation_Test
13     ProductName = "${PRODUCTNAME}";
14     ProductVersion = "${PRODUCTVERSION}";
15     ProductExtension = "${PRODUCTEXTENSION}";
16 #if defined WNT
17     DefaultDestPath = "<winprogpath>\%PRODUCTNAME";
18 #else
19     DefaultDestPath = "/opt/%PRODUCTNAME";
20 #endif
21 End
23 Module gid_Module_Root_Smoketest
24     Name = "smoketest";
25     Description = "smoketest";
26     PackageInfo = "packinfo_test.txt";
27 End
29 #ifndef MACOSX
30 Directory gid_Test_Dir_Brand_Root
31     ParentID = PREDEFINED_PROGDIR;
32   #ifdef WNT
33     HostName = "${PRODUCTNAME} ${BRANDPACKAGEVERSION}";
34   #else
35     HostName = ".";
36   #endif
37     Styles = (OFFICEDIRECTORY,ISINSTALLLOCATION,CREATE);
38 End
39 #endif
41 #if MACOSX
42 Directory gid_Test_Dir_Bundle
43     ParentID = PD_PROGDIR;
44     HostName = "%PRODUCTNAME.app";
45     LangPackHostName = "%PRODUCTNAME Language Pack.app";
46 End
48 Directory gid_Test_Dir_Bundle_Contents
49     ParentID = gid_Test_Dir_Bundle;
50     HostName = "Contents";
51     Styles = (OFFICEDIRECTORY);
52 End
53 #endif
55 Directory gid_Test_Brand_Dir_Program
56 #if defined MACOSX
57     ParentID = gid_Test_Dir_Bundle_Contents;
58     DosName = "MacOS";
59 #else
60     ParentID = gid_Test_Dir_Brand_Root;
61     DosName = "program";
62 #endif
63 End
65 Directory gid_Test_Brand_Dir_Share
66 #if defined MACOSX
67     ParentID = gid_Test_Dir_Bundle_Contents;
68 #else
69     ParentID = gid_Test_Dir_Brand_Root;
70 #endif
71     DosName = "share";
72 End
74 Directory gid_Test_Brand_Dir_Share_Test
75     ParentID = gid_Test_Brand_Dir_Share;
76     DosName = "test";
77 End
80 File gid_Test_File_Txt_License
81     TXT_FILE_BODY;
82     Dir = gid_Test_Brand_Dir_Share_Test;
83   #ifdef UNX
84     Name = "LICENSE";
85   #endif
86   #ifdef WNT
87     Name = "license.txt";
88   #endif
89     Styles = (PACKED, SCPZIP_REPLACE);
90 End
92 File gid_Test_File_Txt_Readme
93     TXT_FILE_BODY;
94     Dir = gid_Test_Brand_Dir_Share_Test;
95   #ifdef UNX
96     Name = "README_en-US";
97   #endif
98   #ifdef WNT
99     Name = "readme_en-US.txt";
100   #endif
101     Styles = (PACKED, SCPZIP_REPLACE);
104 File gid_Test_File_Misc_Smoketestdoc
105     TXT_FILE_BODY;
106     Dir = gid_Test_Brand_Dir_Share_Test;
107     Name = "smoketestdoc.sxw";
108     Styles = (PACKED, SCPZIP_REPLACE);
111 File gid_Test_File_Bin_LOSmoketest
112     BIN_FILE_BODY;
113     Dir = gid_Test_Brand_Dir_Program;
114     Name = "losmoketest";
115     Styles = (PACKED);
118 File gid_Test_File_Exe_Cppunittester
119     BIN_FILE_BODY;
120     Dir = gid_Test_Brand_Dir_Program;
121     Name = "cppunittester";
122     Styles = (PACKED);
125 File gid_Test_File_Lib_Cppunit
126     TXT_FILE_BODY;
127     Styles = (PACKED);
128     Dir = gid_Test_Brand_Dir_Program;
129   #ifdef UNX
130     Name = STRING(CONCAT3(libcppunit-1.13,UNXSUFFIX,.0));
131   #endif
134 File gid_Test_File_Lib_Smoketest
135     TXT_FILE_BODY;
136     Styles = (PACKED);
137     Dir = gid_Test_Brand_Dir_Program;
138   #ifdef UNX
139     Name = STRING(CONCAT2(libsmoketest,UNXSUFFIX));
140   #endif
143 File gid_Test_File_Lib_Test
144     TXT_FILE_BODY;
145     Styles = (PACKED);
146     Dir = gid_Test_Brand_Dir_Program;
147   #ifdef UNX
148     Name = STRING(CONCAT2(libtest,UNXSUFFIX));
149   #endif
152 File gid_Test_File_Lib_Unotest
153     TXT_FILE_BODY;
154     Styles = (PACKED);
155     Dir = gid_Test_Brand_Dir_Program;
156   #ifdef UNX
157     Name = STRING(CONCAT2(libunotest,UNXSUFFIX));
158   #endif
161 File gid_Test_File_Lib_Unoexceptionprotector
162     TXT_FILE_BODY;
163     Styles = (PACKED);
164     Dir = gid_Test_Brand_Dir_Program;
165   #ifdef UNX
166     Name = STRING(CONCAT2(unoexceptionprotector,UNXSUFFIX));
167   #endif
171 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */