Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Work around cconv_more.t failure on Apple M2 by setting N=9 #628

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/cconv_more.t
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ local MAX_ARRAY_N = 4
local ffi = require("ffi")
if ffi.arch == "x64" then
MAX_N = 9 -- https://github.com/terralang/terra/issues/576
elseif ffi.arch == "arm64" and ffi.os == "OSX" then
MAX_N = 9 -- https://github.com/terralang/terra/issues/627
end

local ctypes = {
Expand Down