From 45ef3a65e07c910ddd03a0d63083cb858e914da2 Mon Sep 17 00:00:00 2001 From: mratsim Date: Sat, 31 Oct 2020 14:51:17 +0100 Subject: [PATCH] Skip 32-bit tests on 64-bit machines (too long) --- constantine.nimble | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/constantine.nimble b/constantine.nimble index a58aef8..b381b8f 100644 --- a/constantine.nimble +++ b/constantine.nimble @@ -193,12 +193,12 @@ task test, "Run all tests": else: test "", td.path - if sizeof(int) == 8: # 32-bit tests on 64-bit arch - for td in testDesc: - if td.path in useDebug: - test "-d:Constantine32 -d:debugConstantine", td.path - else: - test "-d:Constantine32", td.path + # if sizeof(int) == 8: # 32-bit tests on 64-bit arch + # for td in testDesc: + # if td.path in useDebug: + # test "-d:Constantine32 -d:debugConstantine", td.path + # else: + # test "-d:Constantine32", td.path # Ensure benchmarks stay relevant. Ignore Windows 32-bit at the moment if not defined(windows) or not (existsEnv"UCPU" or getEnv"UCPU" == "i686"):