diff options
Diffstat (limited to 'libc/ci/test-runner-linux')
-rwxr-xr-x | libc/ci/test-runner-linux | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/libc/ci/test-runner-linux b/libc/ci/test-runner-linux deleted file mode 100755 index cad31ec..0000000 --- a/libc/ci/test-runner-linux +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -set -e - -arch=$1 -prog=$2 - -cd /qemu/init -echo "#!/bin/sh\n/prog --color=never" > run_prog.sh -chmod +x run_prog.sh -cp -f $2 prog -find . | cpio --create --format='newc' --quiet | gzip > ../initrd.gz -cd .. - -timeout 30s qemu-system-$arch \ - -m 1024 \ - -nographic \ - -kernel kernel \ - -initrd initrd.gz \ - -append init=/run_prog.sh > output || true - -# remove kernel messages -tr -d '\r' < output | egrep -v '^\[' - -egrep "(PASSED)|(test result: ok)" output > /dev/null |