File relax-tests.patch of Package orc (Revision aa991f4ca5e7a91df53c53441de43cc3)
Currently displaying revision aa991f4ca5e7a91df53c53441de43cc3 , Show latest
29
1
Index: orc-orc-0.4.28/testsuite/memcpy_speed.c
2
===================================================================
3
--- orc-orc-0.4.28.orig/testsuite/memcpy_speed.c
4
+++ orc-orc-0.4.28/testsuite/memcpy_speed.c
5
6
max = 140;
7
}
8
9
+ /* There is a pathological slow down for max > 150 or so
10
+ so set a lower value. */
11
+ max = 140;
12
+
13
for(i=0;i<max;i++){
14
double x = i*0.1 + 6.0;
15
int size = pow(2.0, x);
16
Index: orc-orc-0.4.28/testsuite/meson.build
17
===================================================================
18
--- orc-orc-0.4.28.orig/testsuite/meson.build
19
+++ orc-orc-0.4.28/testsuite/meson.build
20
21
install: false,
22
dependencies: [libm, orc_dep, orc_test_dep])
23
24
- test(test, t, env : 'testfile=' + meson.current_source_dir() + '/test.orc')
25
+ test(test, t, timeout: 120, env : 'testfile=' + meson.current_source_dir() + '/test.orc')
26
endforeach
27
28
noinst_bins = ['generate_xml_table', 'generate_xml_table2']
29