blob: 382290fe802e6c1e6dab00403e4681869bd5ed60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/bash
# Copyright (C) 2017 Sebastian Pipping <sebastian@pipping.org>
# Licensed under the 3-Clause BSD license
set -e
PS4='# '
set -x
# Install BATS that the test suite relies on
git clone --depth 1 https://github.com/sstephenson/bats.git
( cd bats && sudo ./install.sh /usr/local )
# Run test suite
./test.bats
|