See: https://www.cs.usfca.edu/~mmalensek/cs326/assignments/project-1.html
To compile and run:
make
./inspectorTo execute the test cases, use make test. To pull in updated test cases, run make testupdate. You can also run a specific test case instead of all of them:
# Run all test cases:
make test
# Run a specific test case:
make test run=4
# Run a few specific test cases (4, 8, and 12 in this case):
make test run='4 8 12'