diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-20 17:16:28 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-20 17:16:28 -0400 |
commit | 71de29d2d586b024e1990389d6ab09bc057e62dc (patch) | |
tree | 121cb1c8e10da1586a3b29aa58cca7034d9f5bdf /tools | |
parent | b95818026f6dfd1b5276e7e91efbb2f17330a5cf (diff) | |
download | fork-ledger-71de29d2d586b024e1990389d6ab09bc057e62dc.tar.gz fork-ledger-71de29d2d586b024e1990389d6ab09bc057e62dc.tar.bz2 fork-ledger-71de29d2d586b024e1990389d6ab09bc057e62dc.zip |
Only run the CheckTests if DEBUG mode is enabled
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index 04cec6b0..ad096896 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -248,7 +248,7 @@ endif ###################################################################### TESTS = RegressTests BaselineTests ManualTests ConfirmTests \ - GenerateTests CheckTests + GenerateTests if HAVE_CPPUNIT TESTS += \ @@ -259,6 +259,10 @@ TESTS += \ ReportTests endif +if DEBUG +TESTS += CheckTests +endif + if HAVE_BOOST_PYTHON TESTS += PyUnitTests endif |