diff options
author | Daniil Baturin <daniil@baturin.org> | 2015-04-24 18:06:30 +0600 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2015-04-24 18:06:30 +0600 |
commit | 0ec3700ab4835128ef733f9cf7037811034158be (patch) | |
tree | 06b7344e66af706031c229d4145b0eee3bcd3dbe /_oasis | |
parent | 5fe30d5400c55a78627f9b3f4c45cb304417afd9 (diff) | |
download | vyconf-0ec3700ab4835128ef733f9cf7037811034158be.tar.gz vyconf-0ec3700ab4835128ef733f9cf7037811034158be.zip |
Add the util module to the _oasis
Diffstat (limited to '_oasis')
-rw-r--r-- | _oasis | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -27,6 +27,12 @@ Library "value_checker" FindlibParent: vyconf BuildDepends: pcre +Library "util" + Path: src + Modules: Util + FindlibParent: vyconf + BuildDepends: xml-light + Executable "vyconfd" Path: src MainIs: vyconfd.ml @@ -56,6 +62,14 @@ Executable "value_checker_test" Install: false BuildDepends: oUnit, pcre, vyconf +Executable "util_test" + Path: test + MainIs: util_test.ml + Build$: flag(tests) + CompiledObject: best + Install: false + BuildDepends: oUnit, xml-light + Test "vyconf_tree_test" Run$: flag(tests) TestTools: vyconf_tree_test @@ -73,3 +87,9 @@ Test "value_checker_test" TestTools: value_checker_test Command: $value_checker_test WorkingDirectory: test + +Test "util_test" + Run$: flag(tests) + TestTools: util_test + Command: $util_test + WorkingDirectory: test |