~dricottone/my-utils

ref: 596d0a2530fc8b5bedf46eb7d9282766a2046ac2 my-utils/containers/test_swarm-test.sh -rwxr-xr-x 321 bytes
596d0a25Dominic Ricottone Help and usage messages 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# tests swarm-test

# move to temp directory
cd test

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