-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix alignement of La_x86_64_regs. Store xmm parameters. Patch mostly by Jiri Olsa <olsajiri@gmail.com>.
- Loading branch information
Ulrich Drepper
committed
Mar 14, 2009
1 parent
4546646
commit 1f7c90a
Showing
3 changed files
with
207 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <string.h> | ||
|
||
|
||
static struct | ||
{ | ||
const char *str1; | ||
const char *str2; | ||
} tests[] = | ||
{ | ||
{ "B0075022800016.gbp.corp.com", "B007502280067.gbp.corp.com" }, | ||
{ "B0075022800016.gbp.corp.com", "B007502357019.GBP.CORP.COM" }, | ||
{ "B007502280067.gbp.corp.com", "B007502357019.GBP.CORP.COM" } | ||
}; | ||
#define ntests (sizeof (tests) / sizeof (tests[0])) | ||
|
||
|
||
int | ||
compare (const char *str1, const char *str2, int exp) | ||
{ | ||
int c = strverscmp (str1, str2); | ||
if (c != 0) | ||
c /= abs (c); | ||
return c != exp; | ||
} | ||
|
||
|
||
static int | ||
do_test (void) | ||
{ | ||
int res = 0; | ||
for (int i = 0; i < ntests; ++i) | ||
{ | ||
if (compare (tests[i].str1, tests[i].str2, -1)) | ||
{ | ||
printf ("FAIL: \"%s\" > \"%s\"\n", tests[i].str1, tests[i].str2); | ||
res = 1; | ||
} | ||
if (compare (tests[i].str2, tests[i].str1, +1)) | ||
{ | ||
printf ("FAIL: \"%s\" > \"%s\"\n", tests[i].str2, tests[i].str1); | ||
res = 1; | ||
} | ||
char *copy1 = strdupa (tests[i].str1); | ||
if (compare (tests[i].str1, copy1, 0)) | ||
{ | ||
printf ("FAIL: \"%s\" != \"%s\"\n", tests[i].str1, copy1); | ||
res = 1; | ||
} | ||
char *copy2 = strdupa (tests[i].str2); | ||
if (compare (tests[i].str2, copy2, 0)) | ||
{ | ||
printf ("FAIL: \"%s\" != \"%s\"\n", tests[i].str2, copy2); | ||
res = 1; | ||
} | ||
} | ||
return res; | ||
} | ||
|
||
#define TEST_FUNCTION do_test () | ||
#include "../test-skeleton.c" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters