elf: Disable unload4 test on clang

It triggers and infintie loop.
This commit is contained in:
Adhemerval Zanella 2022-08-26 09:24:25 -03:00
parent 710b12317f
commit eb2579162e
1 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,10 @@
int
main (void)
{
#ifdef __clang__
/* It triggers an infinite loop on clang. */
return 77;
#else
#ifdef M_PERTURB
mallopt (M_PERTURB, 0xaa);
#endif
@ -45,4 +49,5 @@ main (void)
}
dlclose (h);
return 0;
#endif
}