summaryrefslogtreecommitdiff
path: root/integration_tests/make/simple.test.sh
blob: d6c9b7a8596e73406c4b01896d9356ee57390c9b (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash
result="$($PIK hello)"
if [[ ! "$result" == *"Hello, World"* ]] ; then
  echo "expected Hello, World" >&2
  exit 1
fi
result="$($PIK other)"
if [[ ! "$result" == *"Hello from Makefile!"* ]] ; then
  echo "expected Hello from Makefile!" >&2
  exit 1
fi