summaryrefslogtreecommitdiff
path: root/tests/parallel-exec.sh
diff options
context:
space:
mode:
authorStas Boukarev <stassats@gmail.com>2021-03-12 05:24:53 +0300
committerStas Boukarev <stassats@gmail.com>2021-03-12 05:24:53 +0300
commit87578851c7b2b53c5670b37eee3fc7ca3e3182ed (patch)
treeababc4724b959bc4fe80358ac50ba03bca5e5ff5 /tests/parallel-exec.sh
parentd07a7833a7a1af22e88d87f2bd5bb60b1dfbff5b (diff)
Fix parallel-exec on darwin-arm64.
execl is variadic.
Diffstat (limited to 'tests/parallel-exec.sh')
-rwxr-xr-xtests/parallel-exec.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/parallel-exec.sh b/tests/parallel-exec.sh
index 475a77261..e249977ba 100755
--- a/tests/parallel-exec.sh
+++ b/tests/parallel-exec.sh
@@ -120,7 +120,7 @@ TEST_DIRECTORY=$junkdir SBCL_HOME=../obj/sbcl-home exec ../src/runtime/sbcl \
(let ((shell (or #+sunos (posix-getenv "SHELL") "/bin/sh")))
;; exec the shell with the test and we'll pick up its exit code
(alien-funcall (extern-alien "execl" (function int c-string c-string
- c-string unsigned))
+ &optional c-string unsigned))
shell shell
(concatenate 'string file ".sh") 0))
;; if exec fails, just exit with a wrong (not 104) status