~dricottone/my-utils

ref: f6232fc54d726bd833ef93af792aa6c9a2db1633 my-utils/emulation/test_qemu-test.sh -rwxr-xr-x 277 bytes
f6232fc5Dominic Ricottone Full support of age encryption 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# tests qemu-test

test_exit_code() {
  $1 >/dev/null 2>&1
  if [ $? -ne $2 ]; then
    printf "Failure in qemu-test tests: wrong exit code ('$1' returned '$?', should be '$2')\n"
    exit 1
  fi
}
test_exit_code "qemu-test -v" "0"
test_exit_code "qemu-test -h" "0"