From patchwork Fri Jul 27 20:38:37 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "H.J. Lu" X-Patchwork-Id: 28657 Received: (qmail 87405 invoked by alias); 27 Jul 2018 20:38:50 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 87393 invoked by uid 89); 27 Jul 2018 20:38:49 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.2 required=5.0 tests=BAYES_00, FREEMAIL_FROM, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_SOFTFAIL autolearn=ham version=3.3.2 spammy=Hx-languages-length:815 X-HELO: mga02.intel.com From: "H.J. Lu" To: libc-alpha@sourceware.org Subject: [PATCH] x86: Add tst-get-cpu-features-static to $(tests) [BZ #23458] Date: Fri, 27 Jul 2018 13:38:37 -0700 Message-Id: <20180727203837.11828-1-hjl.tools@gmail.com> All tests should be added to $(tests) and all static tests should be added to $(tests-static). [BZ #23458] * sysdeps/x86/Makefile (tests): Add tst-get-cpu-features-static. --- sysdeps/x86/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sysdeps/x86/Makefile b/sysdeps/x86/Makefile index 672bb19489..85086b1410 100644 --- a/sysdeps/x86/Makefile +++ b/sysdeps/x86/Makefile @@ -5,7 +5,9 @@ endif ifeq ($(subdir),elf) sysdep-dl-routines += dl-get-cpu-features -tests += tst-get-cpu-features +# NB: All tests should be added to $(tests) and all static tests should +# be added to $(tests-static). +tests += tst-get-cpu-features tst-get-cpu-features-static tests-static += tst-get-cpu-features-static endif