From 428c6cd8d60c1351d8caca6ea6d37be41341f115 Mon Sep 17 00:00:00 2001 From: bangerth Date: Wed, 13 Sep 2006 18:50:24 +0000 Subject: [PATCH] Only run the threads test if not in multithreading mode, since the results are otherwise in unpredictable order. git-svn-id: https://svn.dealii.org/trunk@13897 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/base/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/base/Makefile b/tests/base/Makefile index ac7f508c1f..c2629456c3 100644 --- a/tests/base/Makefile +++ b/tests/base/Makefile @@ -35,7 +35,6 @@ tests_x = geometry_info_* \ symmetric_tensor_* \ full_tensor_* \ timer \ - threads \ polynomial* \ auto_derivative_function \ anisotropic_* \ @@ -45,6 +44,10 @@ tests_x = geometry_info_* \ utilities_* \ is_finite +ifeq ($(enable-multithreading),no) + tests_x += threads +endif + # from above list of regular expressions, generate the real set of # tests expand = $(shell echo $(addsuffix .cc,$(1)) \ -- 2.39.5