[nss-softokn/f20] - Update to nss-3.17.1 - Add a mechanism to skip test suite execution during development work

Kai Engert kengert at fedoraproject.org
Wed Sep 24 22:50:17 UTC 2014


commit 57128091aeac6907ec94e9ee7fdb27b4e10ec446
Author: Kai Engert <kaie at redhat.com>
Date:   Thu Sep 25 00:49:53 2014 +0200

    - Update to nss-3.17.1
    - Add a mechanism to skip test suite execution during development work

 .gitignore       |    2 +-
 nss-softokn.spec |   19 ++++++++++++++++---
 sources          |    2 +-
 3 files changed, 18 insertions(+), 5 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 3bb6de0..920083d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/nss-softokn-3.17.0.tar.gz
+/nss-softokn-3.17.1.tar.gz
diff --git a/nss-softokn.spec b/nss-softokn.spec
index 9446b96..2e83806 100644
--- a/nss-softokn.spec
+++ b/nss-softokn.spec
@@ -24,7 +24,7 @@
 
 Summary:          Network Security Services Softoken Module
 Name:             nss-softokn
-Version:          3.17.0
+Version:          3.17.1
 Release:          1%{?dist}
 License:          MPLv2.0
 URL:              http://www.mozilla.org/projects/security/pki/nss/
@@ -269,11 +269,20 @@ cd ./nss/tests/
 %global nss_ssl_tests " "
 %global nss_ssl_run " "
 
-HOST=localhost DOMSUF=localdomain PORT=$MYRAND NSS_CYCLES=%{?nss_cycles} NSS_TESTS=%{?nss_tests} NSS_SSL_TESTS=%{?nss_ssl_tests} NSS_SSL_RUN=%{?nss_ssl_run} ./all.sh
+SKIP_NSS_TEST_SUITE=`echo $SKIP_NSS_TEST_SUITE`
+
+if [ "x$SKIP_NSS_TEST_SUITE" == "x" ]; then
+  HOST=localhost DOMSUF=localdomain PORT=$MYRAND NSS_CYCLES=%{?nss_cycles} NSS_TESTS=%{?nss_tests} NSS_SSL_TESTS=%{?nss_ssl_tests} NSS_SSL_RUN=%{?nss_ssl_run} ./all.sh
+fi
 
 cd ../../../../
 
-TEST_FAILURES=`grep -c FAILED ./tests_results/security/localhost.1/output.log` || :
+if [ "x$SKIP_NSS_TEST_SUITE" == "x" ]; then
+  TEST_FAILURES=`grep -c FAILED ./tests_results/security/localhost.1/output.log` || :
+else
+  TEST_FAILURES=0
+fi
+
 if [ $TEST_FAILURES -ne 0 ]; then
   echo "error: test suite returned failure(s)"
   exit 1
@@ -385,6 +394,10 @@ done
 %{_includedir}/nss3/shsign.h
 
 %changelog
+* Wed Sep 24 2014 Kai Engert <kaie at redhat.com> - 3.17.1-1
+- Update to nss-3.17.1
+- Add a mechanism to skip test suite execution during development work
+
 * Fri Aug 22 2014 Elio Maldonado <emaldona at redhat.com> - 3.16.2-2
 - Update to nss-3.17.0
 
diff --git a/sources b/sources
index 8abd68b..79ddc8b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-bcb380981f87bbb1f01fbb881003037e  nss-softokn-3.17.0.tar.gz
+e188fa6c125989b35d47226ccc411d49  nss-softokn-3.17.1.tar.gz


More information about the scm-commits mailing list