diff --git a/tests/test-progs/hello/bin/mips/linux/hello b/tests/test-progs/hello/bin/mips/linux/hello deleted file mode 100755 index a3db001ec8..0000000000 Binary files a/tests/test-progs/hello/bin/mips/linux/hello and /dev/null differ diff --git a/tests/test-progs/hello/bin/power/linux/hello b/tests/test-progs/hello/bin/power/linux/hello deleted file mode 100755 index 6619ae37f2..0000000000 Binary files a/tests/test-progs/hello/bin/power/linux/hello and /dev/null differ diff --git a/tests/test-progs/hello/bin/sparc/linux/hello b/tests/test-progs/hello/bin/sparc/linux/hello deleted file mode 100755 index e254ae33f8..0000000000 Binary files a/tests/test-progs/hello/bin/sparc/linux/hello and /dev/null differ diff --git a/tests/test-progs/hello/src/Makefile.mips b/tests/test-progs/hello/src/Makefile.mips new file mode 100644 index 0000000000..675c8d1544 --- /dev/null +++ b/tests/test-progs/hello/src/Makefile.mips @@ -0,0 +1,11 @@ +all: hello + +hello: hello.c dockcross-mips + ./dockcross-mips bash -c '$$CC hello.c -o hello -static' + +dockcross-mips: + docker run --rm dockcross/linux-mips > ./dockcross-mips + chmod +x ./dockcross-mips + +clean: + rm -f dockcross* hello