diff options
author | Robin Templeton <robin@terpri.org> | 2015-05-10 17:11:40 -0400 |
---|---|---|
committer | Christine Lemmer-Webber <cwebber@dustycloud.org> | 2021-10-19 18:10:05 -0400 |
commit | 8ce962192f1dbb961472845f82348edf5ae73d2e (patch) | |
tree | 18f1c004cdc99a483342e2773cb4534990b5f8cf | |
parent | c53e9d0ac1c7bb057f1a369f375946ab4a421403 (diff) | |
download | guile-8ce962192f1dbb961472845f82348edf5ae73d2e.tar.gz |
update cross-compilation test
(Best-ability ChangeLog annotation added by Christine Lemmer-Webber.)
* test-suite/tests/cross-compilation.test (test-target): Update it.
-rw-r--r-- | test-suite/tests/cross-compilation.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/tests/cross-compilation.test b/test-suite/tests/cross-compilation.test index 120317b42..456cf8aac 100644 --- a/test-suite/tests/cross-compilation.test +++ b/test-suite/tests/cross-compilation.test @@ -56,8 +56,8 @@ (string=? (native-os) (target-os))) (native-word-size) word-size)) - (bv (compile '(hello-world) #:warning-level 0 #:to 'bytecode))) - (and=> (parse-elf bv) + (bv+constants (compile '(hello-world) #:warning-level 0 #:to 'bytecode))) + (and=> (parse-elf (car bv+constants)) (lambda (elf) (and (equal? (elf-byte-order elf) endian) (equal? (elf-word-size elf) word-size))))))))) |