diff options
Diffstat (limited to 'testament/specs.nim')
-rw-r--r-- | testament/specs.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testament/specs.nim b/testament/specs.nim index bfc6b051e..96b02746b 100644 --- a/testament/specs.nim +++ b/testament/specs.nim @@ -206,6 +206,9 @@ proc parseSpec*(filename: string): TSpec = if isTravis: result.err = reDisabled of "appveyor": if isAppVeyor: result.err = reDisabled + of "32bit": + if sizeof(int) == 4: + result.err = reDisabled else: result.parseErrors.addLine "cannot interpret as a bool: ", e.value of "cmd": |