Skip 32-bit tests on 64-bit machines (too long)
This commit is contained in:
parent
244f58350c
commit
45ef3a65e0
|
@ -193,12 +193,12 @@ task test, "Run all tests":
|
||||||
else:
|
else:
|
||||||
test "", td.path
|
test "", td.path
|
||||||
|
|
||||||
if sizeof(int) == 8: # 32-bit tests on 64-bit arch
|
# if sizeof(int) == 8: # 32-bit tests on 64-bit arch
|
||||||
for td in testDesc:
|
# for td in testDesc:
|
||||||
if td.path in useDebug:
|
# if td.path in useDebug:
|
||||||
test "-d:Constantine32 -d:debugConstantine", td.path
|
# test "-d:Constantine32 -d:debugConstantine", td.path
|
||||||
else:
|
# else:
|
||||||
test "-d:Constantine32", td.path
|
# test "-d:Constantine32", td.path
|
||||||
|
|
||||||
# Ensure benchmarks stay relevant. Ignore Windows 32-bit at the moment
|
# Ensure benchmarks stay relevant. Ignore Windows 32-bit at the moment
|
||||||
if not defined(windows) or not (existsEnv"UCPU" or getEnv"UCPU" == "i686"):
|
if not defined(windows) or not (existsEnv"UCPU" or getEnv"UCPU" == "i686"):
|
||||||
|
|
Loading…
Reference in New Issue