summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spglobalcon01 (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-04-16Canonicalize config.h includeSebastian Huber1-1/+1
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2018-08-24spglobalcon01: LLVM optimization makes variable i always 1Daniel Hellstrom1-2/+2
Declare i volatile to avoid compiler optimization putting i into data section with initialization value 1.
2018-04-10testsuite/sptests: Merged nested Makefile.am files into one Makefile.amChris Johns1-19/+0
This change is part of the testsuite Makefile.am reorganization. Update #3382
2017-11-06tests: Use simple console driverSebastian Huber1-1/+1
Update #3170. Update #3199.
2017-10-28tests: Remove obsolete TESTS_USE_PRINTKSebastian Huber1-1/+0
Update #3170. Update #3199.
2014-10-14testsuites: Avoid clock driverSebastian Huber1-1/+1
2014-10-13score: Rework global constructionSebastian Huber4-0/+94
Ensure that the global construction is performed in the context of the first initialization thread. On SMP this was not guaranteed in the previous implementation.