Source stackrc in exercises.
Exit with error if there are failed tests.
diff --git a/exercise.sh b/exercise.sh
index 7703f40..dd45c5a 100755
--- a/exercise.sh
+++ b/exercise.sh
@@ -1,5 +1,6 @@
 #!/usr/bin/env bash
 
+source ./stackrc
 # Run everything in the exercises/ directory that isn't explicitly disabled
 
 # comma separated list of script basenames to skip
@@ -44,3 +45,7 @@
 for script in $failures; do
     echo FAILED $script
 done
+
+if [ -n "$failures" ] ; then
+    exit 1
+fi