Skip to content

Commit bd25ed3

Browse files
committed
test(check.rb): assume 64-bit FORM by default
check.rb now assumes FORM is 64-bit when it doesn't say whether 64-bit or 32-bit. This is a temporary workaround on the master branch.
1 parent c51a59e commit bd25ed3

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

check/check.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1139,7 +1139,9 @@ def check
11391139
@wordsize = $1.to_i / 16
11401140
else
11411141
system("#{form_bin} #{frmname}")
1142-
fatal("failed to get the wordsize of '#{@form}'")
1142+
warn("failed to get the wordsize of '#{@form}'")
1143+
warn("assuming wordsize = 4")
1144+
@wordsize = 4
11431145
end
11441146
# Prepare for mpirun
11451147
if @is_mpi

0 commit comments

Comments
 (0)