Browse Source

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
Craig Scott 8 years ago
parent
commit
94cd4505f7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Tests/ExportImport/Export/testLibNoSONAME.c

+ 1 - 1
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;
 }