diff options
author | Kay Ramme <kr@openoffice.org> | 2001-10-11 12:14:37 +0000 |
---|---|---|
committer | Kay Ramme <kr@openoffice.org> | 2001-10-11 12:14:37 +0000 |
commit | 2b0374807f82885edb93b169f29de5ac14a60373 (patch) | |
tree | 608c2512e4cb17db05b162b92591b848b830cbe2 /sal/test | |
parent | 0acd92a9e53ee206f92268d9e2b27dc4f22a37ee (diff) |
added tests for macros (#88338#)
Diffstat (limited to 'sal/test')
-rwxr-xr-x | sal/test/bootstrap.pl | 39 |
1 files changed, 37 insertions, 2 deletions
diff --git a/sal/test/bootstrap.pl b/sal/test/bootstrap.pl index 02b1f1b22..9ec145864 100755 --- a/sal/test/bootstrap.pl +++ b/sal/test/bootstrap.pl @@ -5,9 +5,9 @@ eval 'exec perl -wS $0 ${1+"$@"}' # # $RCSfile: bootstrap.pl,v $ # -# $Revision: 1.2 $ +# $Revision: 1.3 $ # -# last change: $Author: kr $ $Date: 2001-10-05 08:00:22 $ +# last change: $Author: kr $ $Date: 2001-10-11 13:14:37 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -116,6 +116,41 @@ if (!$rc) { $state = 0; } +if ($ENV{GUI} eq "WNT") { + $comment = $comment . '$SYSUSERHOME not testable under windows' . "\n"; + $state = 0; +} +else { + $rc = system "./testbootstrap", "file://$ENV{HOME}", '-env:MYBOOTSTRAPTESTVALUE=$SYSUSERHOME'; + if (!$rc) { + $comment = $comment . '$SYSUSERHOME test not passed' . "\n"; + $state = 0; + } +} + +if ($ENV{GUI} eq "WNT") { + $comment = $comment . '$SYSUSERCONFIG' . " not testable under windows\n"; + $state = 0; +} +else { + $rc = system "./testbootstrap", "file://$ENV{HOME}", '-env:MYBOOTSTRAPTESTVALUE=$SYSUSERCONFIG'; + if (!$rc) { + $comment = $comment . '$SYSUSERCONFIG test not passed' . "\n"; + $state = 0; + } +} + +if ($ENV{GUI} eq "WNT") { + $comment = $comment . '$SYSBINDIR' . " not testable under windows\n"; + $state = 0; +} +else { + $rc = system "./testbootstrap", "file://$ENV{PWD}", '-env:MYBOOTSTRAPTESTVALUE=$SYSBINDIR'; + if (!$rc) { + $comment = $comment . '$SYSBINDIR test not passed' . "\n"; + $state = 0; + } +} if ($ENV{GUI} eq "WNT") { $rc = system "./testbootstrap", "inherited_value", '-env:MYBOOTSTRAPTESTVALUE=$INHERITED_VALUE', "-env:iniName=ini.ini"; |