about summary refs log tree commit diff
path: root/scripts/test-installation.pl
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@gmail.com>2011-07-23 15:28:31 -0400
committerUlrich Drepper <drepper@gmail.com>2011-07-23 15:28:31 -0400
commit9191c04a7e19fffbea0a08523e579cd8e55142df (patch)
tree131d8cfb36363acaa56437b91622b099199d4437 /scripts/test-installation.pl
parentbba33c289b1b24e1bb3075b7fce5b56c9d01ce2f (diff)
downloadglibc-9191c04a7e19fffbea0a08523e579cd8e55142df.tar.gz
glibc-9191c04a7e19fffbea0a08523e579cd8e55142df.tar.xz
glibc-9191c04a7e19fffbea0a08523e579cd8e55142df.zip
Adjust test for correct installation
Diffstat (limited to 'scripts/test-installation.pl')
-rwxr-xr-xscripts/test-installation.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/test-installation.pl b/scripts/test-installation.pl
index 90cd9d7547..25a919b5ad 100755
--- a/scripts/test-installation.pl
+++ b/scripts/test-installation.pl
@@ -1,5 +1,5 @@
 #! /usr/bin/perl -w
-# Copyright (C) 1997, 1998, 1999, 2004 Free Software Foundation, Inc.
+# Copyright (C) 1997, 1998, 1999, 2004, 2011 Free Software Foundation, Inc.
 # This file is part of the GNU C Library.
 # Contributed by Andreas Jaeger <aj@arthur.rhein-neckar.de>, 1997.
 
@@ -105,8 +105,10 @@ while (<SOVERSIONS>) {
     # - libdb1 since it conflicts with libdb
     # - libnss1_* from glibc-compat add-on
     # - libthread_db since it contains unresolved references
+    # - it's just a test NSS module
     if ($name ne "nss_ldap" && $name ne "db1"
-	&& !($name =~/^nss1_/) && $name ne "thread_db") {
+	&& !($name =~/^nss1_/) && $name ne "thread_db"
+	&& $name ne "nss_test1") {
       $link_libs .= " -l$name";
       $versions{$name} = $version;
     }