#!/bin/bash # Runs all the low-priority tests possible # First, make sure it compiles! if ! make proj2 then echo ERROR: Project failed to compile exit -1 fi if run-parts --exit-on-error low-tests/ then echo All tests completed successfully. fi