Skip to content

Commit bc47c28

Browse files
committed
travis, minimal: Install gcc-multilib for -m32; use /bin/echo for test.
1 parent 1e1779e commit bc47c28

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ before_script:
77
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
88
- sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded
99
- sudo apt-get update -qq
10-
- sudo apt-get install -y python3.3 python3 gcc-4.7 gcc-arm-none-eabi qemu-system mingw32
10+
- sudo apt-get install -y python3.3 python3 gcc-4.7 gcc-multilib gcc-arm-none-eabi qemu-system mingw32
1111
# For teensy build
1212
- sudo apt-get install realpath
1313

minimal/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@ run:
7272
reset
7373

7474
test: $(BUILD)/firmware.elf
75-
$(Q)echo -e "print('hello world!', list(x+1 for x in range(10)), end='eol\\\\n')\\r\\n\\x04" | $(BUILD)/firmware.elf | tail -n2 | grep "^hello world! \\[1, 2, 3, 4, 5, 6, 7, 8, 9, 10\\]eol"
75+
$(Q)/bin/echo -e "print('hello world!', list(x+1 for x in range(10)), end='eol\\\\n')\\r\\n\\x04" | $(BUILD)/firmware.elf | tail -n2 | grep "^hello world! \\[1, 2, 3, 4, 5, 6, 7, 8, 9, 10\\]eol"
7676

7777
include ../py/mkrules.mk

0 commit comments

Comments
 (0)