summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAdrian Likins <alikins@grimlock.devel.redhat.com>2008-01-29 18:15:42 -0500
committerAdrian Likins <alikins@grimlock.devel.redhat.com>2008-01-29 18:15:42 -0500
commita25c78935c275d8b2e21da49264899b8a5821cef (patch)
treea98f205ae117e6e3bc5c16889ef3684eacb404d0 /test
parent5dfe042f8b511e7e56157cd56fcc949c736308dc (diff)
downloadthird_party-func-a25c78935c275d8b2e21da49264899b8a5821cef.tar.gz
third_party-func-a25c78935c275d8b2e21da49264899b8a5821cef.tar.xz
third_party-func-a25c78935c275d8b2e21da49264899b8a5821cef.zip
some more path fixes
still need a bit more automagic to make it do the right thing when invoke from different places for now, just invoke it directly from test/
Diffstat (limited to 'test')
-rwxr-xr-xtest/test-it.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test-it.sh b/test/test-it.sh
index 974f6b3..d700a41 100755
--- a/test/test-it.sh
+++ b/test/test-it.sh
@@ -228,12 +228,16 @@ test_funcd()
run_async_test()
{
+ msg "Running async_test.py to test async/forking"
+ pushd $BUILD_PATH/test
python async_test.py
}
run_unittests()
{
+ msg "Running the unittest suite"
+ pushd $BUILD_PATH/test/unittest
nosetests -v -w unittest/
}
@@ -296,6 +300,7 @@ sign_the_certmaster_certs
test_funcd
+
if [ "$RUN_UNITTEST" == "Y" ] ; then
run_unittests
fi