summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/slang/slang/array_test.patch
blob: ccd416f207288f28f7f2b1754f8c99654e261497 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 ()
 {