c++ compiler
-
clone this project
-
pull the submodule: git submodule update --init --recursive
-
compile:
- Go the root of directoy where the project is cloned
- command: sbt
- command: compile
-
run a single test:
- command: testOnly path -- -t testname
- example: testOnly lms.security.test.ResMergeSort -- -t "r-merge-sort"
-
run all tests under a directory:
- command: testOnly path
- example: testOnly lms.security.test.ResMergeSort