1#!/bin/bash 2 3# Copyright (c) 2013 Kevin Wolf <kwolf@redhat.com> 4# 5# Permission is hereby granted, free of charge, to any person obtaining a copy 6# of this software and associated documentation files (the "Software"), to deal 7# in the Software without restriction, including without limitation the rights 8# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9# copies of the Software, and to permit persons to whom the Software is 10# furnished to do so, subject to the following conditions: 11# 12# The above copyright notice and this permission notice shall be included in 13# all copies or substantial portions of the Software. 14# 15# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21# THE SOFTWARE. 22 23QEMU=${QEMU:-"../../x86_64-softmmu/qemu-system-x86_64"} 24 25run_qemu() { 26 local kernel=$1 27 shift 28 29 echo -e "\n\n=== Running test case: $kernel $@ ===\n" >> test.log 30 31 $QEMU \ 32 -kernel $kernel \ 33 -display none \ 34 -device isa-debugcon,chardev=stdio \ 35 -chardev file,path=test.out,id=stdio \ 36 -device isa-debug-exit,iobase=0xf4,iosize=0x4 \ 37 "$@" 38 ret=$? 39 40 cat test.out >> test.log 41} 42 43mmap() { 44 run_qemu mmap.elf 45 run_qemu mmap.elf -m 1.1M 46 run_qemu mmap.elf -m 2G 47 run_qemu mmap.elf -m 4G 48 run_qemu mmap.elf -m 8G 49} 50 51 52make all 53 54for t in mmap; do 55 56 echo > test.log 57 $t 58 59 debugexit=$((ret & 0x1)) 60 ret=$((ret >> 1)) 61 pass=1 62 63 if [ $debugexit != 1 ]; then 64 echo -e "\e[31m ?? \e[0m $t (no debugexit used, exit code $ret)" 65 pass=0 66 elif [ $ret != 0 ]; then 67 echo -e "\e[31mFAIL\e[0m $t (exit code $ret)" 68 pass=0 69 fi 70 71 if ! diff $t.out test.log > /dev/null 2>&1; then 72 echo -e "\e[31mFAIL\e[0m $t (output difference)" 73 diff -u $t.out test.log 74 pass=0 75 fi 76 77 if [ $pass == 1 ]; then 78 echo -e "\e[32mPASS\e[0m $t" 79 fi 80 81done 82