#!/bin/bash

QFILE='../../q file'
if [[ $(${QFILE} -Cq /bin/bash)  != "app-shells/bash" ]]; then
	echo "/bin/bash does not seem to be provided by app-shells/bash. Found $(${QFILE} -Cq /bin/bash)" > /dev/stderr
	echo FAILED
	exit 1
fi
echo PASSED
exit 0
