Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 513 Bytes

File metadata and controls

36 lines (28 loc) · 513 Bytes

Contributing

All contributed code should compile, pass lint checks, pass unit tests, and pass JSON examples.

Build

bazel build :supersim :supersim_test

Lint

bazel build :lint

Unit tests

Simple:

bazel run :supersim_test

With memory check:

valgrind --leak-check=full --show-reachable=yes --track-fds=yes ./bazel-bin/supersim_test

JSON Examples:

Simple:

./scripts/run_examples.py

With memory check:

./scripts/run_examples.py -m