aboutsummarylogtreecommitdiffstats
path: root/test.sh
blob: 1041b21be2c85fd5c78998779beff97a0b55bc34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash


testEquality() {
  if ./haur -g &>/dev/null; then
    echo "Test failed"
    exit 1
  else
    echo "Test successful"
    exit 0
  fi
}

testEquality