|
From: Jeroen N. W. <jn...@xs...> - 2005-09-10 11:28:52
|
Greetings,
The introduction of test none/tests/ppc32/lsw in revision 4614 activated a
small bug in tests/cputest.c: Directory ppc32 is not excluded when running
on x86. The patch below fixes this problem.
Jeroen.
Index: tests/cputest.c
===================================================================
--- tests/cputest.c (revision 4614)
+++ tests/cputest.c (working copy)
@@ -16,7 +16,7 @@
char* all_archs[] = {
"amd64",
- "ppc",
+ "ppc32",
"x86",
NULL
};
@@ -34,7 +34,7 @@
#ifdef __powerpc__
static Bool go(char* cpu)
{
- if ( strcmp( cpu, "ppc" ) == 0 )
+ if ( strcmp( cpu, "ppc32" ) == 0 )
return True;
else
return False;
|
|
From: Julian S. <js...@ac...> - 2005-09-10 11:51:45
|
Ah. Thanks for finding that. I observed it was erroneously running
ppc32 tests on x86 but wasn't sure how to fix it.
J
On Saturday 10 September 2005 12:28, Jeroen N. Witmond wrote:
> Greetings,
>
> The introduction of test none/tests/ppc32/lsw in revision 4614 activated a
> small bug in tests/cputest.c: Directory ppc32 is not excluded when running
> on x86. The patch below fixes this problem.
>
> Jeroen.
>
> Index: tests/cputest.c
> ===================================================================
> --- tests/cputest.c (revision 4614)
> +++ tests/cputest.c (working copy)
> @@ -16,7 +16,7 @@
>
> char* all_archs[] = {
> "amd64",
> - "ppc",
> + "ppc32",
> "x86",
> NULL
> };
> @@ -34,7 +34,7 @@
> #ifdef __powerpc__
> static Bool go(char* cpu)
> {
> - if ( strcmp( cpu, "ppc" ) == 0 )
> + if ( strcmp( cpu, "ppc32" ) == 0 )
> return True;
> else
> return False;
>
>
>
>
> -------------------------------------------------------
> SF.Net email is Sponsored by the Better Software Conference & EXPO
> September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
> Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
> Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
> _______________________________________________
> Valgrind-developers mailing list
> Val...@li...
> https://lists.sourceforge.net/lists/listinfo/valgrind-developers
|