compiler: add syscalls for 64-bit arm

This commit is contained in:
Ayke van Laethem
2019-02-05 20:13:39 +01:00
committed by Ron Evans
parent 93d5269fef
commit 3cba36f2ba
4 changed files with 49 additions and 1 deletions
+10
View File
@@ -63,6 +63,16 @@ func TestCompiler(t *testing.T) {
})
}
t.Log("running tests for linux/arm64...")
for _, path := range matches {
if path == "testdata/cgo/" {
continue // TODO: improve CGo
}
t.Run(path, func(t *testing.T) {
runTest(path, tmpdir, "aarch64--linux-gnueabi", t)
})
}
t.Log("running tests for emulated cortex-m3...")
for _, path := range matches {
t.Run(path, func(t *testing.T) {