diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2009-10-10 21:36:03 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2009-10-10 21:36:03 +0000 |
commit | 6db04f4320cd5d24ae625dbc1df5a8a71b93e51d (patch) | |
tree | e6e5c79464b4d4c05c75fd6dbb8f4d3e800edbcc /Jamfile.jam | |
parent | ab28c3b45e611b5d49a03024bd6ae7b184d37d4a (diff) |
tests: Added simple test framework, added a couple of tests
git-svn-id: http://pugixml.googlecode.com/svn/trunk@140 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'Jamfile.jam')
-rw-r--r-- | Jamfile.jam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jamfile.jam b/Jamfile.jam index bebeae5..420a3e0 100644 --- a/Jamfile.jam +++ b/Jamfile.jam @@ -13,6 +13,6 @@ LDFLAGS = -fprofile-arcs ; GCOVFLAGS = -n ;
Library pugixml : src/pugixml.cpp src/pugixpath.cpp ;
-Application tests : tests/main.cpp : pugixml ;
+Application tests : tests/main.cpp [ Glob tests : test_*.cpp ] : pugixml ;
Test run_tests : tests ;
Coverage coverage : run_tests ;
|