1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-07-05 01:00:21 +02:00

update cross-compilation test

(Best-ability ChangeLog annotation added by Christopher Allan Webber.)

* test-suite/tests/cross-compilation.test (test-target): Update it.
This commit is contained in:
Robin Templeton 2015-05-10 17:11:40 -04:00 committed by Christopher Allan Webber
parent e3d13813aa
commit 898e00b6cf

View file

@ -56,8 +56,8 @@
(string=? (native-os) (target-os)))
(native-word-size)
word-size))
(bv (compile '(hello-world) #:to 'bytecode)))
(and=> (parse-elf bv)
(bv+constants (compile '(hello-world) #:to 'bytecode)))
(and=> (parse-elf (car bv+constants))
(lambda (elf)
(and (equal? (elf-byte-order elf) endian)
(equal? (elf-word-size elf) word-size)))))))))