#!/bin/sh
set -e
cd "$1"
gcc -o hello hello.c
# create non source binary
cp hello notsourced
# create two sourced binaries
cp hello sourced
cp hello symlink-to-sourced
