Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / sal / test / bootstrap
blobc12ef19222af57a8df98d5edc3c395ba5a28bff6
1 #/bin/tcsh
3 # This file is part of the LibreOffice project.
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/.
9 # This file incorporates work covered by the following license notice:
11 #   Licensed to the Apache Software Foundation (ASF) under one or more
12 #   contributor license agreements. See the NOTICE file distributed
13 #   with this work for additional information regarding copyright
14 #   ownership. The ASF licenses this file to you under the Apache
15 #   License, Version 2.0 (the "License"); you may not use this file
16 #   except in compliance with the License. You may obtain a copy of
17 #   the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 setenv MYBOOTSTRAPTESTVALUE 0
21 echo 1
22 ./testbootstrap 1 -env:MYBOOTSTRAPTESTVALUE=1
24 echo 2
25 ./testbootstrap.bin file
27 echo 3
28 ./testbootstrap.Bin file
30 echo 4
31 ./testbootstrap.exe file
33 echo 5
34 ./testbootstrap.Exe file
36 echo 6
37 ./testbootstrap 0 -env:INIFILENAME=
39 unsetenv MYBOOTSTRAPTESTVALUE
40 echo 7
41 ./testbootstrap default -env:INIFILENAME=
43 echo 8
44 ./testbootstrap default -env:MYBOOTSTRAPTESTVALUE2=1 -env:INIFILENAME=
46 echo
47 echo "macro tests"
48 echo
50 # simple macro expansion
51 echo 9
52 ./testbootstrap _first_second_third_ -env:FIRST=first -env:SECOND=second -env:THIRD=third -env:MYBOOTSTRAPTESTVALUE='_${FIRST}_${SECOND}_${THIRD}_'
54 # simple quoting
55 echo 10
56 ./testbootstrap '_${FIRST}_${SECOND}_${THIRD}_' -env:FIRST=first -env:SECOND=second -env:THIRD=third -env:MYBOOTSTRAPTESTVALUE='_\$\{FIRST\}_\$\{SECOND\}_\$\{THIRD\}_'
58 # simple ini access
59 echo 11
60 ./testbootstrap TheKeysValue -env:'MYBOOTSTRAPTESTVALUE=${./bootstraptest.ini:TheSection:TheKey}'
62 # ini access with simple macro expansion
63 echo 12
64 ./testbootstrap TheKeysValue -env:ININAME=./bootstraptest.ini -env:SECTIONNAME=TheSection -env:KEYNAME=TheKey \
65          -env:'MYBOOTSTRAPTESTVALUE=${$ININAME:$SECTIONNAME:$KEYNAME}'
67 # ini access with complex macro expansion
68 echo 13
69 ./testbootstrap TheKeysValue -env:ININAME=./bootstraptest.ini \
70         -env:'MYBOOTSTRAPTESTVALUE=${$ININAME:${$ININAME:SecondSection:IndirectSection}:${$ININAME:SecondSection:IndirectKey}}'
72 # test no infinite recursion
73 echo 14
74 ./testbootstrap "***RECURSION DETECTED***" -env:'MYBOOTSTRAPTESTVALUE=$MYBOOTSTRAPTESTVALUE'
76 # test unicode
77 echo 15
78 ./testbootstrap AAABBBCCC000 -env:'MYBOOTSTRAPTESTVALUE=\u0041\u0041\u0041\u0042\u0042\u0042\u0043\u0043\u0043\u0030\u0030\u0030'
80 echo
81 echo "bootstrap test finished"
82 echo