summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsonmi%netscape.com <devnull@localhost>2001-04-04 00:15:47 +0000
committersonmi%netscape.com <devnull@localhost>2001-04-04 00:15:47 +0000
commit6e95a3009e5be3de4e96a10b3b7995b6be1bd0fa (patch)
tree4bf9afbcb5bf3c2f51c19dc0b09db53aa9abb768
parent3d55a3c66d55b98cfa1be7b334719c3ad09867c7 (diff)
downloadnss-hg-6e95a3009e5be3de4e96a10b3b7995b6be1bd0fa.tar.gz
added backward compatibility tests
-rwxr-xr-xsecurity/nss/tests/nssqa22
1 files changed, 16 insertions, 6 deletions
diff --git a/security/nss/tests/nssqa b/security/nss/tests/nssqa
index 6bac0ce21..979f3d2db 100755
--- a/security/nss/tests/nssqa
+++ b/security/nss/tests/nssqa
@@ -252,11 +252,21 @@ nssqa_main()
}
-if [ $O_FILE = ON ]
-then
- nssqa_main 2>>$FILENAME
-else
- nssqa_main
-fi
+#FIXME start TEST_LEVEL with 0
+
+TEST_LEVEL=0
+
+while [ $TEST_LEVEL -lt 3 ] ; do
+ unset BUILD_OPT;export BUILD_OPT;Debug "BUILD_OPT $BUILD_OPT"
+ unset USE_64;export USE_64;Debug "USE_64 $USE_64"
+ bc $TEST_LEVEL
+ if [ $O_FILE = ON ]
+ then
+ nssqa_main 2>>$FILENAME
+ else
+ nssqa_main
+ fi
+ TEST_LEVEL=`expr $TEST_LEVEL + 1 `
+done
Exit "Done."