wscript
changeset 5372 716ca842b52c
parent 5369 86beb5869f67
child 5392 80b9ae7b5e26
--- a/wscript	Tue Oct 06 22:47:07 2009 -0700
+++ b/wscript	Tue Oct 06 22:54:24 2009 -0700
@@ -640,8 +640,10 @@
 check_context = Build.BuildContext
 
 def check(bld):
-    """run the NS-3 unit tests (deprecated in favour of test.py)"""
-    raise Utils.WafError("Please run `./test.py' now, instead of './waf check'")
+    """run the equivalent of the old ns-3 unit tests using test.py"""
+    bld = wutils.bld
+    env = bld.env
+    wutils.run_python_program("test.py -c core", env)
 
 
 class print_introspected_doxygen_task(Task.TaskBase):