diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2012-09-18 11:38:19 -0400 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2012-09-18 12:18:51 -0400 |
commit | 8f09e4cac48005af431f1c341060e11130f41422 (patch) | |
tree | 0254eec24658f31531016dba5fe4cf656d8f8079 /src/makefile.osx | |
parent | 085d9c75f402265611fbffde7eff82f640640fb9 (diff) |
Give makefiles 'test' and 'check' targets to compile and run unit tests
Diffstat (limited to 'src/makefile.osx')
-rw-r--r-- | src/makefile.osx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/makefile.osx b/src/makefile.osx index 2666caa918..547f751aba 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -116,6 +116,9 @@ endif all: bitcoind +test check: test_bitcoin FORCE + ./test_bitcoin + # auto-generated dependencies: -include obj/*.P -include obj-test/*.P |