| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 
 | Description: upstream source: autotilization: skip_testsuite
 Skip tests that might fail on some architectutes.
Origin: vendor, Debian
Forwarded: https://github.com/blitzpp/blitz/pull/35
Author: Jerome Benoit <calculus@rezozer.net>
Last-Update: 2018-06-09
--- a/testsuite/Makefile.am
+++ b/testsuite/Makefile.am
@@ -12,21 +12,23 @@
 check_HEADERS = testsuite.h
 
 check_PROGRAMS = 64bit Adnene-Ben-Abdallah-1 Adnene-Ben-Abdallah-2     \
-alignment arrayresize arrayinitialize bitwise chris-jeffery-1 chris-jeffery-2  \
+arrayresize arrayinitialize bitwise chris-jeffery-1 chris-jeffery-2  \
 chris-jeffery-3 complex-test constarray contiguous copy ctors	       \
 derrick-bass-1 derrick-bass-3 exprctor expression-slicing extract free \
 gary-huber-1 indexexpr-base initialize int-math-func interlace iter    \
-Josef-Wagenhuber levicivita loop1 matthias-troyer-1 matthias-troyer-2  \
+Josef-Wagenhuber loop1 matthias-troyer-1 matthias-troyer-2  \
 mattias-lindstroem-1 member_function minmax minsumpow module	       \
 multicomponent multicomponent-2 newet Olaf-Ronneberger-1	       \
 patrik-jonsson-1 peter-bienstman-1 peter-bienstman-2 peter-bienstman-3 \
 peter-bienstman-4 peter-bienstman-5 peter-nordlund-1 peter-nordlund-2  \
 peter-nordlund-3 preexisting promote pthread qcd reduce reindex	       \
-reverse safeToReturn shapecheck shape slice-iterators stencil-et       \
+reverse safeToReturn shapecheck shape slice-iterators       \
 stencil-extent storage stub theodore-papadopoulo-1 tinymat tinyvec     \
 transpose troyer-genilloud tvinitialize Ulisses-Mello-1 weakref	       \
 wei-ku-1 where zeek-1 cast serialize update
 
+SKIP_TESTS = alignment levicivita stencil-et
+
 TESTS = $(check_PROGRAMS)
 #TESTS_ENVIRONMENT = $(VALGRIND)
 
 |