Lines Matching +full:- +full:e
3 set -e
5 if [ $# -eq 0 ]; then
10 if [ ! -f config.mak ]; then
11 echo "run './configure --enable-efi && make' first. See ./configure -h"
18 : "${EFI_TEST:=efi-tests}"
22 if [ ! -f "$EFI_UEFI" ]; then
37 # - Copy .efi file to host dir $EFI_TEST/$EFI_CASE/EFI/BOOT/BOOTX64.EFI
39 # - UEFI firmware by default loads the file EFI/BOOT/BOOTX64.EFI
43 mkdir -p "$EFI_CASE_DIR"
49 # run in UEFI, some test cases, e.g. `x86/pmu.c`, require more free memory. A
53 # Also, pass in an EFI-specific smp count (i.e., `-smp 1`) as the last argument
54 # to x86/run. This `smp` flag overrides any previous `smp` flags (e.g.,
55 # `-smp 4`). This is necessary because KVM-Unit-Tests do not currently support
58 -drive file="$EFI_UEFI",format=raw,if=pflash,readonly=on \
59 -drive file.dir="$EFI_TEST/$EFI_CASE/",file.driver=vvfat,file.rw=on,format=raw,if=virtio \
60 -net none \
61 -nographic \
62 -m 256 \
64 -smp "$EFI_SMP"