diff options
author | sonmi%netscape.com <devnull@localhost> | 2001-06-12 01:25:04 +0000 |
---|---|---|
committer | sonmi%netscape.com <devnull@localhost> | 2001-06-12 01:25:04 +0000 |
commit | a36719cccf02e7204a2d6f7db3bc9648f1c25e90 (patch) | |
tree | 8d41aa1f18eb0020e407dd72d79a8cd63f619f0a | |
parent | 2dd099ed5bd73a653f3c346dcfe0738e08386e02 (diff) | |
download | nss-hg-a36719cccf02e7204a2d6f7db3bc9648f1c25e90.tar.gz |
added binary compatibility tests for Solaris x86
-rw-r--r-- | security/nss/tests/header | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/security/nss/tests/header b/security/nss/tests/header index 55cbf8cb2..7b5d40360 100644 --- a/security/nss/tests/header +++ b/security/nss/tests/header @@ -166,7 +166,11 @@ fi if [ -z "$BC_MASTER" ] # master directory for backwardscompatibility testing then # a linux compiler bug prevents us from doing the # testing against a rtm - so we rebuild the branch - BC_MASTER="nss32/builds/20010510.1-nss-3.2-ref" + if [ "`uname -sp`" != "SunOS i386" ] ; then + BC_MASTER="nss32/builds/20010510.1-nss-3.2-ref" + else + BC_MASTER="nss32/builds/20010530.1.nss321_rtm_solaris" + fi fi BC_RELEASE=3.2 export BC_RELEASE |