LAPACK  3.5.0
LAPACK: Linear Algebra PACKage
 All Classes Files Functions Variables Typedefs Macros
ia64_ignore_testfailures.patch
Go to the documentation of this file.
1 Description: Ignore test failures on ia64
2 Author: Sébastien Villemot <sebastien@debian.org>
3 Forwarded: not-needed
4 Last-Update: 2013-09-21
5 ---
6 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
7 --- a/testing/Makefile
8 +++ b/testing/Makefile
9 @@ -41,6 +41,11 @@
10  LAPACKLIB := $(VARLIB) ../$(LAPACKLIB)
11  endif
12 
13 +ifeq ($(shell dpkg-architecture -qDEB_HOST_ARCH),ia64)
15 +else
16 +ia64ignore=
17 +endif
18 
19  all: single complex double complex16 singleproto doubleproto complexproto complex16proto
20 
21 @@ -155,61 +160,61 @@
22 
23  stest.out: stest.in xlintsts
24  @echo Testing REAL LAPACK linear equation routines
25 - ./xlintsts < stest.in > $@ 2>&1
26 + $(ia64ignore)./xlintsts < stest.in > $@ 2>&1
27  #
28  # ======== COMPLEX LIN TESTS ==========================
29 
30  ctest.out: ctest.in xlintstc
31  @echo Testing COMPLEX LAPACK linear equation routines
32 - ./xlintstc < ctest.in > $@ 2>&1
33 + $(ia64ignore)./xlintstc < ctest.in > $@ 2>&1
34  #
35  # ======== DOUBLE LIN TESTS ===========================
36 
37  dtest.out: dtest.in xlintstd
38  @echo Testing DOUBLE PRECISION LAPACK linear equation routines
39 - ./xlintstd < dtest.in > $@ 2>&1
40 + $(ia64ignore)./xlintstd < dtest.in > $@ 2>&1
41  #
42  # ======== COMPLEX16 LIN TESTS ========================
43 
44  ztest.out: ztest.in xlintstz
45  @echo Testing COMPLEX16 LAPACK linear equation routines
46 - ./xlintstz < ztest.in > $@ 2>&1
47 + $(ia64ignore)./xlintstz < ztest.in > $@ 2>&1
48  #
49  # ======== SINGLE-DOUBLE PROTO LIN TESTS ==============
50 
51  dstest.out: dstest.in xlintstds
52  @echo Testing SINGLE-DOUBLE PRECISION LAPACK prototype linear equation routines
53 - ./xlintstds < dstest.in > $@ 2>&1
54 + $(ia64ignore)./xlintstds < dstest.in > $@ 2>&1
55  #
56  # ======== COMPLEX-COMPLEX16 LIN TESTS ========================
57 
58  zctest.out: zctest.in xlintstzc
59  @echo Testing COMPLEX-COMPLEX16 LAPACK protoype linear equation routines
60 - ./xlintstzc < zctest.in > $@ 2>&1
61 + $(ia64ignore)./xlintstzc < zctest.in > $@ 2>&1
62  #
63  # ======== SINGLE RFP LIN TESTS ========================
64 
65  stest_rfp.out: stest_rfp.in xlintstrfs
66  @echo Testing REAL LAPACK RFP protoype linear equation routines
67 - ./xlintstrfs < stest_rfp.in > $@ 2>&1
68 + $(ia64ignore)./xlintstrfs < stest_rfp.in > $@ 2>&1
69  #
70  # ======== COMPLEX16 RFP LIN TESTS ========================
71 
72  dtest_rfp.out: dtest_rfp.in xlintstrfd
73  @echo Testing DOUBLE PRECISION LAPACK RFP protoype linear equation routines
74 - ./xlintstrfd < dtest_rfp.in > $@ 2>&1
75 + $(ia64ignore)./xlintstrfd < dtest_rfp.in > $@ 2>&1
76  #
77  # ======== COMPLEX16 RFP LIN TESTS ========================
78 
79  ctest_rfp.out: ctest_rfp.in xlintstrfc
80  @echo Testing COMPLEX LAPACK RFP protoype linear equation routines
81 - ./xlintstrfc < ctest_rfp.in > $@ 2>&1
82 + $(ia64ignore)./xlintstrfc < ctest_rfp.in > $@ 2>&1
83  #
84  # ======== COMPLEX16 RFP LIN TESTS ========================
85 
86  ztest_rfp.out: ztest_rfp.in xlintstrfz
87  @echo Testing COMPLEX16 LAPACK RFP protoype linear equation routines
88 - ./xlintstrfz < ztest_rfp.in > $@ 2>&1
89 + $(ia64ignore)./xlintstrfz < ztest_rfp.in > $@ 2>&1
90  #
91  #
92  # ======== SINGLE EIG TESTS ===========================
93 @@ -217,313 +222,313 @@
94 
95  snep.out: nep.in xeigtsts
96  @echo NEP: Testing Nonsymmetric Eigenvalue Problem routines
97 - ./xeigtsts < nep.in > $@ 2>&1
98 + $(ia64ignore)./xeigtsts < nep.in > $@ 2>&1
99 
100  ssep.out: sep.in xeigtsts
101  @echo SEP: Testing Symmetric Eigenvalue Problem routines
102 - ./xeigtsts < sep.in > $@ 2>&1
103 + $(ia64ignore)./xeigtsts < sep.in > $@ 2>&1
104 
105  ssvd.out: svd.in xeigtsts
106  @echo SVD: Testing Singular Value Decomposition routines
107 - ./xeigtsts < svd.in > $@ 2>&1
108 + $(ia64ignore)./xeigtsts < svd.in > $@ 2>&1
109 
110  sec.out: sec.in xeigtsts
111  @echo SEC: Testing REAL Eigen Condition Routines
112 - ./xeigtsts < sec.in > $@ 2>&1
113 + $(ia64ignore)./xeigtsts < sec.in > $@ 2>&1
114 
115  sed.out: sed.in xeigtsts
116  @echo SEV: Testing REAL Nonsymmetric Eigenvalue Driver
117 - ./xeigtsts < sed.in > $@ 2>&1
118 + $(ia64ignore)./xeigtsts < sed.in > $@ 2>&1
119 
120  sgg.out: sgg.in xeigtsts
121  @echo SGG: Testing REAL Nonsymmetric Generalized Eigenvalue Problem routines
122 - ./xeigtsts < sgg.in > $@ 2>&1
123 + $(ia64ignore)./xeigtsts < sgg.in > $@ 2>&1
124 
125  sgd.out: sgd.in xeigtsts
126  @echo SGD: Testing REAL Nonsymmetric Generalized Eigenvalue Problem driver routines
127 - ./xeigtsts < sgd.in > $@ 2>&1
128 + $(ia64ignore)./xeigtsts < sgd.in > $@ 2>&1
129 
130  ssb.out: ssb.in xeigtsts
131  @echo SSB: Testing REAL Symmetric Eigenvalue Problem routines
132 - ./xeigtsts < ssb.in > $@ 2>&1
133 + $(ia64ignore)./xeigtsts < ssb.in > $@ 2>&1
134 
135  ssg.out: ssg.in xeigtsts
136  @echo SSG: Testing REAL Symmetric Generalized Eigenvalue Problem routines
137 - ./xeigtsts < ssg.in > $@ 2>&1
138 + $(ia64ignore)./xeigtsts < ssg.in > $@ 2>&1
139 
140  sbal.out: sbal.in xeigtsts
141  @echo SGEBAL: Testing the balancing of a REAL general matrix
142 - ./xeigtsts < sbal.in > $@ 2>&1
143 + $(ia64ignore)./xeigtsts < sbal.in > $@ 2>&1
144 
145  sbak.out: sbak.in xeigtsts
146  @echo SGEBAK: Testing the back transformation of a REAL balanced matrix
147 - ./xeigtsts < sbak.in > $@ 2>&1
148 + $(ia64ignore)./xeigtsts < sbak.in > $@ 2>&1
149 
150  sgbal.out: sgbal.in xeigtsts
151  @echo SGGBAL: Testing the balancing of a pair of REAL general matrices
152 - ./xeigtsts < sgbal.in > $@ 2>&1
153 + $(ia64ignore)./xeigtsts < sgbal.in > $@ 2>&1
154 
155  sgbak.out: sgbak.in xeigtsts
156  @echo SGGBAK: Testing the back transformation of a pair of REAL balanced matrices
157 - ./xeigtsts < sgbak.in > $@ 2>&1
158 + $(ia64ignore)./xeigtsts < sgbak.in > $@ 2>&1
159 
160  sbb.out: sbb.in xeigtsts
161  @echo SBB: Testing banded Singular Value Decomposition routines
162 - ./xeigtsts < sbb.in > $@ 2>&1
163 + $(ia64ignore)./xeigtsts < sbb.in > $@ 2>&1
164 
165  sglm.out: glm.in xeigtsts
166  @echo GLM: Testing Generalized Linear Regression Model routines
167 - ./xeigtsts < glm.in > $@ 2>&1
168 + $(ia64ignore)./xeigtsts < glm.in > $@ 2>&1
169 
170  sgqr.out: gqr.in xeigtsts
171  @echo GQR: Testing Generalized QR and RQ factorization routines
172 - ./xeigtsts < gqr.in > $@ 2>&1
173 + $(ia64ignore)./xeigtsts < gqr.in > $@ 2>&1
174 
175  sgsv.out: gsv.in xeigtsts
176  @echo GSV: Testing Generalized Singular Value Decomposition routines
177 - ./xeigtsts < gsv.in > $@ 2>&1
178 + $(ia64ignore)./xeigtsts < gsv.in > $@ 2>&1
179 
180  scsd.out: csd.in xeigtsts
181  @echo CSD: Testing CS Decomposition routines
182 - ./xeigtsts < csd.in > $@ 2>&1
183 + $(ia64ignore)./xeigtsts < csd.in > $@ 2>&1
184 
185  slse.out: lse.in xeigtsts
186  @echo LSE: Testing Constrained Linear Least Squares routines
187 - ./xeigtsts < lse.in > $@ 2>&1
188 + $(ia64ignore)./xeigtsts < lse.in > $@ 2>&1
189  #
190  # ======== COMPLEX EIG TESTS ===========================
191 
192  cnep.out: nep.in xeigtstc
193  @echo NEP: Testing Nonsymmetric Eigenvalue Problem routines
194 - ./xeigtstc < nep.in > $@ 2>&1
195 + $(ia64ignore)./xeigtstc < nep.in > $@ 2>&1
196 
197  csep.out: sep.in xeigtstc
198  @echo SEP: Testing Symmetric Eigenvalue Problem routines
199 - ./xeigtstc < sep.in > $@ 2>&1
200 + $(ia64ignore)./xeigtstc < sep.in > $@ 2>&1
201 
202  csvd.out: svd.in xeigtstc
203  @echo SVD: Testing Singular Value Decomposition routines
204 - ./xeigtstc < svd.in > $@ 2>&1
205 + $(ia64ignore)./xeigtstc < svd.in > $@ 2>&1
206 
207  cec.out: cec.in xeigtstc
208  @echo CEC: Testing COMPLEX Eigen Condition Routines
209 - ./xeigtstc < cec.in > $@ 2>&1
210 + $(ia64ignore)./xeigtstc < cec.in > $@ 2>&1
211 
212  ced.out: ced.in xeigtstc
213  @echo CES: Testing COMPLEX Nonsymmetric Schur Form Driver
214 - ./xeigtstc < ced.in > $@ 2>&1
215 + $(ia64ignore)./xeigtstc < ced.in > $@ 2>&1
216 
217  cgg.out: cgg.in xeigtstc
218  @echo CGG: Testing COMPLEX Nonsymmetric Generalized Eigenvalue Problem routines
219 - ./xeigtstc < cgg.in > $@ 2>&1
220 + $(ia64ignore)./xeigtstc < cgg.in > $@ 2>&1
221 
222  cgd.out: cgd.in xeigtstc
223  @echo CGD: Testing COMPLEX Nonsymmetric Generalized Eigenvalue Problem driver routines
224 - ./xeigtstc < cgd.in > $@ 2>&1
225 + $(ia64ignore)./xeigtstc < cgd.in > $@ 2>&1
226 
227  csb.out: csb.in xeigtstc
228  @echo CHB: Testing Hermitian Eigenvalue Problem routines
229 - ./xeigtstc < csb.in > $@ 2>&1
230 + $(ia64ignore)./xeigtstc < csb.in > $@ 2>&1
231 
232  csg.out: csg.in xeigtstc
233  @echo CSG: Testing Symmetric Generalized Eigenvalue Problem routines
234 - ./xeigtstc < csg.in > $@ 2>&1
235 + $(ia64ignore)./xeigtstc < csg.in > $@ 2>&1
236 
237  cbal.out: cbal.in xeigtstc
238  @echo CGEBAL: Testing the balancing of a COMPLEX general matrix
239 - ./xeigtstc < cbal.in > $@ 2>&1
240 + $(ia64ignore)./xeigtstc < cbal.in > $@ 2>&1
241 
242  cbak.out: cbak.in xeigtstc
243  @echo CGEBAK: Testing the back transformation of a COMPLEX balanced matrix
244 - ./xeigtstc < cbak.in > $@ 2>&1
245 + $(ia64ignore)./xeigtstc < cbak.in > $@ 2>&1
246 
247  cgbal.out: cgbal.in xeigtstc
248  @echo CGGBAL: Testing the balancing of a pair of COMPLEX general matrices
249 - ./xeigtstc < cgbal.in > $@ 2>&1
250 + $(ia64ignore)./xeigtstc < cgbal.in > $@ 2>&1
251 
252  cgbak.out: cgbak.in xeigtstc
253  @echo CGGBAK: Testing the back transformation of a pair of COMPLEX balanced matrices
254 - ./xeigtstc < cgbak.in > $@ 2>&1
255 + $(ia64ignore)./xeigtstc < cgbak.in > $@ 2>&1
256 
257  cbb.out: cbb.in xeigtstc
258  @echo CBB: Testing banded Singular Value Decomposition routines
259 - ./xeigtstc < cbb.in > $@ 2>&1
260 + $(ia64ignore)./xeigtstc < cbb.in > $@ 2>&1
261 
262  cglm.out: glm.in xeigtstc
263  @echo GLM: Testing Generalized Linear Regression Model routines
264 - ./xeigtstc < glm.in > $@ 2>&1
265 + $(ia64ignore)./xeigtstc < glm.in > $@ 2>&1
266 
267  cgqr.out: gqr.in xeigtstc
268  @echo GQR: Testing Generalized QR and RQ factorization routines
269 - ./xeigtstc < gqr.in > $@ 2>&1
270 + $(ia64ignore)./xeigtstc < gqr.in > $@ 2>&1
271 
272  cgsv.out: gsv.in xeigtstc
273  @echo GSV: Testing Generalized Singular Value Decomposition routines
274 - ./xeigtstc < gsv.in > $@ 2>&1
275 + $(ia64ignore)./xeigtstc < gsv.in > $@ 2>&1
276 
277  ccsd.out: csd.in xeigtstc
278  @echo CSD: Testing CS Decomposition routines
279 - ./xeigtstc < csd.in > $@ 2>&1
280 + $(ia64ignore)./xeigtstc < csd.in > $@ 2>&1
281 
282  clse.out: lse.in xeigtstc
283  @echo LSE: Testing Constrained Linear Least Squares routines
284 - ./xeigtstc < lse.in > $@ 2>&1
285 + $(ia64ignore)./xeigtstc < lse.in > $@ 2>&1
286  #
287  # ======== DOUBLE EIG TESTS ===========================
288 
289  dnep.out: nep.in xeigtstd
290  @echo NEP: Testing Nonsymmetric Eigenvalue Problem routines
291 - ./xeigtstd < nep.in > $@ 2>&1
292 + $(ia64ignore)./xeigtstd < nep.in > $@ 2>&1
293 
294  dsep.out: sep.in xeigtstd
295  @echo SEP: Testing Symmetric Eigenvalue Problem routines
296 - ./xeigtstd < sep.in > $@ 2>&1
297 + $(ia64ignore)./xeigtstd < sep.in > $@ 2>&1
298 
299  dsvd.out: svd.in xeigtstd
300  @echo SVD: Testing Singular Value Decomposition routines
301 - ./xeigtstd < svd.in > $@ 2>&1
302 + $(ia64ignore)./xeigtstd < svd.in > $@ 2>&1
303 
304  dec.out: dec.in xeigtstd
305  @echo DEC: Testing DOUBLE PRECISION Eigen Condition Routines
306 - ./xeigtstd < dec.in > $@ 2>&1
307 + $(ia64ignore)./xeigtstd < dec.in > $@ 2>&1
308 
309  ded.out: ded.in xeigtstd
310  @echo DEV: Testing DOUBLE PRECISION Nonsymmetric Eigenvalue Driver
311 - ./xeigtstd < ded.in > $@ 2>&1
312 + $(ia64ignore)./xeigtstd < ded.in > $@ 2>&1
313 
314  dgg.out: dgg.in xeigtstd
315  @echo DGG: Testing DOUBLE PRECISION Nonsymmetric Generalized Eigenvalue Problem routines
316 - ./xeigtstd < dgg.in > $@ 2>&1
317 + $(ia64ignore)./xeigtstd < dgg.in > $@ 2>&1
318 
319  dgd.out: dgd.in xeigtstd
320  @echo DGD: Testing DOUBLE PRECISION Nonsymmetric Generalized Eigenvalue Problem driver routines
321 - ./xeigtstd < dgd.in > $@ 2>&1
322 + $(ia64ignore)./xeigtstd < dgd.in > $@ 2>&1
323 
324  dsb.out: dsb.in xeigtstd
325  @echo DSB: Testing DOUBLE PRECISION Symmetric Eigenvalue Problem routines
326 - ./xeigtstd < dsb.in > $@ 2>&1
327 + $(ia64ignore)./xeigtstd < dsb.in > $@ 2>&1
328 
329  dsg.out: dsg.in xeigtstd
330  @echo DSG: Testing DOUBLE PRECISION Symmetric Generalized Eigenvalue Problem routines
331 - ./xeigtstd < dsg.in > $@ 2>&1
332 + $(ia64ignore)./xeigtstd < dsg.in > $@ 2>&1
333 
334  dbal.out: dbal.in xeigtstd
335  @echo DGEBAL: Testing the balancing of a DOUBLE PRECISION general matrix
336 - ./xeigtstd < dbal.in > $@ 2>&1
337 + $(ia64ignore)./xeigtstd < dbal.in > $@ 2>&1
338 
339  dbak.out: dbak.in xeigtstd
340  @echo DGEBAK: Testing the back transformation of a DOUBLE PRECISION balanced matrix
341 - ./xeigtstd < dbak.in > $@ 2>&1
342 + $(ia64ignore)./xeigtstd < dbak.in > $@ 2>&1
343 
344  dgbal.out: dgbal.in xeigtstd
345  @echo DGGBAL: Testing the balancing of a pair of DOUBLE PRECISION general matrices
346 - ./xeigtstd < dgbal.in > $@ 2>&1
347 + $(ia64ignore)./xeigtstd < dgbal.in > $@ 2>&1
348 
349  dgbak.out: dgbak.in xeigtstd
350  @echo DGGBAK: Testing the back transformation of a pair of DOUBLE PRECISION balanced matrices
351 - ./xeigtstd < dgbak.in > $@ 2>&1
352 + $(ia64ignore)./xeigtstd < dgbak.in > $@ 2>&1
353 
354  dbb.out: dbb.in xeigtstd
355  @echo DBB: Testing banded Singular Value Decomposition routines
356 - ./xeigtstd < dbb.in > $@ 2>&1
357 + $(ia64ignore)./xeigtstd < dbb.in > $@ 2>&1
358 
359  dglm.out: glm.in xeigtstd
360  @echo GLM: Testing Generalized Linear Regression Model routines
361 - ./xeigtstd < glm.in > $@ 2>&1
362 + $(ia64ignore)./xeigtstd < glm.in > $@ 2>&1
363 
364  dgqr.out: gqr.in xeigtstd
365  @echo GQR: Testing Generalized QR and RQ factorization routines
366 - ./xeigtstd < gqr.in > $@ 2>&1
367 + $(ia64ignore)./xeigtstd < gqr.in > $@ 2>&1
368 
369  dgsv.out: gsv.in xeigtstd
370  @echo GSV: Testing Generalized Singular Value Decomposition routines
371 - ./xeigtstd < gsv.in > $@ 2>&1
372 + $(ia64ignore)./xeigtstd < gsv.in > $@ 2>&1
373 
374  dcsd.out: csd.in xeigtstd
375  @echo CSD: Testing CS Decomposition routines
376 - ./xeigtstd < csd.in > $@ 2>&1
377 + $(ia64ignore)./xeigtstd < csd.in > $@ 2>&1
378 
379  dlse.out: lse.in xeigtstd
380  @echo LSE: Testing Constrained Linear Least Squares routines
381 - ./xeigtstd < lse.in > $@ 2>&1
382 + $(ia64ignore)./xeigtstd < lse.in > $@ 2>&1
383  #
384  # ======== COMPLEX16 EIG TESTS ===========================
385 
386  znep.out: nep.in xeigtstz
387  @echo NEP: Testing Nonsymmetric Eigenvalue Problem routines
388 - ./xeigtstz < nep.in > $@ 2>&1
389 + $(ia64ignore)./xeigtstz < nep.in > $@ 2>&1
390 
391  zsep.out: sep.in xeigtstz
392  @echo SEP: Testing Symmetric Eigenvalue Problem routines
393 - ./xeigtstz < sep.in > $@ 2>&1
394 + $(ia64ignore)./xeigtstz < sep.in > $@ 2>&1
395 
396  zsvd.out: svd.in xeigtstz
397  @echo SVD: Testing Singular Value Decomposition routines
398 - ./xeigtstz < svd.in > $@ 2>&1
399 + $(ia64ignore)./xeigtstz < svd.in > $@ 2>&1
400 
401  zec.out: zec.in xeigtstz
402  @echo ZEC: Testing COMPLEX16 Eigen Condition Routines
403 - ./xeigtstz < zec.in > $@ 2>&1
404 + $(ia64ignore)./xeigtstz < zec.in > $@ 2>&1
405 
406  zed.out: zed.in xeigtstz
407  @echo ZES: Testing COMPLEX16 Nonsymmetric Schur Form Driver
408 - ./xeigtstz < zed.in > $@ 2>&1
409 + $(ia64ignore)./xeigtstz < zed.in > $@ 2>&1
410 
411  zgg.out: zgg.in xeigtstz
412  @echo ZGG: Testing COMPLEX16 Nonsymmetric Generalized Eigenvalue Problem routines
413 - ./xeigtstz < zgg.in > $@ 2>&1
414 + $(ia64ignore)./xeigtstz < zgg.in > $@ 2>&1
415 
416  zgd.out: zgd.in xeigtstz
417  @echo ZGD: Testing COMPLEX16 Nonsymmetric Generalized Eigenvalue Problem driver routines
418 - ./xeigtstz < zgd.in > $@ 2>&1
419 + $(ia64ignore)./xeigtstz < zgd.in > $@ 2>&1
420 
421  zsb.out: zsb.in xeigtstz
422  @echo ZHB: Testing Hermitian Eigenvalue Problem routines
423 - ./xeigtstz < zsb.in > $@ 2>&1
424 + $(ia64ignore)./xeigtstz < zsb.in > $@ 2>&1
425 
426  zsg.out: zsg.in xeigtstz
427  @echo ZSG: Testing Symmetric Generalized Eigenvalue Problem routines
428 - ./xeigtstz < zsg.in > $@ 2>&1
429 + $(ia64ignore)./xeigtstz < zsg.in > $@ 2>&1
430 
431  zbal.out: zbal.in xeigtstz
432  @echo ZGEBAL: Testing the balancing of a COMPLEX16 general matrix
433 - ./xeigtstz < zbal.in > $@ 2>&1
434 + $(ia64ignore)./xeigtstz < zbal.in > $@ 2>&1
435 
436  zbak.out: zbak.in xeigtstz
437  @echo ZGEBAK: Testing the back transformation of a COMPLEX16 balanced matrix
438 - ./xeigtstz < zbak.in > $@ 2>&1
439 + $(ia64ignore)./xeigtstz < zbak.in > $@ 2>&1
440 
441  zgbal.out: zgbal.in xeigtstz
442  @echo ZGGBAL: Testing the balancing of a pair of COMPLEX general matrices
443 - ./xeigtstz < zgbal.in > $@ 2>&1
444 + $(ia64ignore)./xeigtstz < zgbal.in > $@ 2>&1
445 
446  zgbak.out: zgbak.in xeigtstz
447  @echo ZGGBAK: Testing the back transformation of a pair of COMPLEX16 balanced matrices
448 - ./xeigtstz < zgbak.in > $@ 2>&1
449 + $(ia64ignore)./xeigtstz < zgbak.in > $@ 2>&1
450 
451  zbb.out: zbb.in xeigtstz
452  @echo ZBB: Testing banded Singular Value Decomposition routines
453 - ./xeigtstz < zbb.in > $@ 2>&1
454 + $(ia64ignore)./xeigtstz < zbb.in > $@ 2>&1
455 
456  zglm.out: glm.in xeigtstz
457  @echo GLM: Testing Generalized Linear Regression Model routines
458 - ./xeigtstz < glm.in > $@ 2>&1
459 + $(ia64ignore)./xeigtstz < glm.in > $@ 2>&1
460 
461  zgqr.out: gqr.in xeigtstz
462  @echo GQR: Testing Generalized QR and RQ factorization routines
463 - ./xeigtstz < gqr.in > $@ 2>&1
464 + $(ia64ignore)./xeigtstz < gqr.in > $@ 2>&1
465 
466  zgsv.out: gsv.in xeigtstz
467  @echo GSV: Testing Generalized Singular Value Decomposition routines
468 - ./xeigtstz < gsv.in > $@ 2>&1
469 + $(ia64ignore)./xeigtstz < gsv.in > $@ 2>&1
470 
471  zcsd.out: csd.in xeigtstz
472  @echo CSD: Testing CS Decomposition routines
473 - ./xeigtstz < csd.in > $@ 2>&1
474 + $(ia64ignore)./xeigtstz < csd.in > $@ 2>&1
475 
476  zlse.out: lse.in xeigtstz
477  @echo LSE: Testing Constrained Linear Least Squares routines
478 - ./xeigtstz < lse.in > $@ 2>&1
479 + $(ia64ignore)./xeigtstz < lse.in > $@ 2>&1
480  # ==============================================================================
481 
482  xlintsts: ../$(LAPACKLIB) ../$(TMGLIB) $(FRCLIN) $(FRC)