Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 1/1] slang: modify an array test
@ 2019-06-05 22:50 Joe Slater
  2019-06-06 15:35 ` Adrian Bunk
  0 siblings, 1 reply; 2+ messages in thread
From: Joe Slater @ 2019-06-05 22:50 UTC (permalink / raw)
  To: openembedded-core

One array test attempts to create an array that is far too
large to exist.  Different exceptions are thrown for 32 and 64
bit machines, so we account for that when catching them.

Signed-off-by: Joe Slater <joe.slater@windriver.com>
---
 meta/recipes-extended/slang/slang/array_test.patch | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 meta/recipes-extended/slang/slang/array_test.patch

diff --git a/meta/recipes-extended/slang/slang/array_test.patch b/meta/recipes-extended/slang/slang/array_test.patch
new file mode 100644
index 0000000..ccd416f
--- /dev/null
+++ b/meta/recipes-extended/slang/slang/array_test.patch
@@ -0,0 +1,20 @@
+slang: modify array test
+
+One array test tries to create an array that is far too large and anticipates an exception.
+IndexError will only be thrown for 64 bit machines, so we add InvalidParmError for 32 bit ones.
+
+Upstream-Status: Submitted [jedsoft.org]
+
+Signed-off-by: Joe Slater <joe.slater@windriver.com>
+
+--- a/src/test/array.sl
++++ b/src/test/array.sl
+@@ -165,7 +165,7 @@ try
+ {
+    SS = Long_Type[10000,10000,10000,10000,10000,10000];
+ }
+-catch IndexError;
++catch IndexError,InvalidParmError;
+ 
+ private define array_map2_func ()
+ {
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 1/1] slang: modify an array test
  2019-06-05 22:50 [PATCH 1/1] slang: modify an array test Joe Slater
@ 2019-06-06 15:35 ` Adrian Bunk
  0 siblings, 0 replies; 2+ messages in thread
From: Adrian Bunk @ 2019-06-06 15:35 UTC (permalink / raw)
  To: Joe Slater; +Cc: openembedded-core

On Wed, Jun 05, 2019 at 03:50:40PM -0700, Joe Slater wrote:
> One array test attempts to create an array that is far too
> large to exist.  Different exceptions are thrown for 32 and 64
> bit machines, so we account for that when catching them.
> 
> Signed-off-by: Joe Slater <joe.slater@windriver.com>
> ---
>  meta/recipes-extended/slang/slang/array_test.patch | 20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
>...

This seems to miss actually applying the patch?

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-06-06 15:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-05 22:50 [PATCH 1/1] slang: modify an array test Joe Slater
2019-06-06 15:35 ` Adrian Bunk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox