From 94cd4505f7d6884c9ed9b596dcb34112483d42e4 Mon Sep 17 00:00:00 2001 From: Craig Scott Date: Thu, 18 May 2017 16:13:02 +1000 Subject: Tests: Make function name not match SONAME We look for `SONAME` in the output of `readelf` to check whether the binary contains the field. Do not provide a symbol that may accidentally match. Fixes: #16894 --- Tests/ExportImport/Export/testLibNoSONAME.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/ExportImport/Export/testLibNoSONAME.c b/Tests/ExportImport/Export/testLibNoSONAME.c index 30acc83..4d98562 100644 --- a/Tests/ExportImport/Export/testLibNoSONAME.c +++ b/Tests/ExportImport/Export/testLibNoSONAME.c @@ -4,7 +4,7 @@ #define testLibNoSONAME_EXPORT #endif -testLibNoSONAME_EXPORT int testLibNoSONAME(void) +testLibNoSONAME_EXPORT int testLibNoSoName(void) { return 0; } -- cgit v0.12