Skip to content
Permalink
cc8d7dad13
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
22 lines (16 sloc) 523 Bytes
# CSE 3150 Testing
## Compiling
This project uses `cmake` to manage dependencies. Compiling the assignment testing binaries involves running a few commands. This produces an "out of source" build.
```sh
$ git submodule update --init --recursive
$ mkdir build
$ cd build
$ cmake ..
$ make
```
## Running
The built binaries will be available in the `build` folder. They expect to be ran with the student git repo as the current working directory.
```sh
$ cd cse3150sp18.brc15007
$ ~/cse3150-testing/build/bin/asgn1
```