X-Git-Url: http://nitlanguage.org diff --git a/src/testing/testing_suite.nit b/src/testing/testing_suite.nit index 37f5c74..faf4b79 100644 --- a/src/testing/testing_suite.nit +++ b/src/testing/testing_suite.nit @@ -21,9 +21,9 @@ private import annotation redef class ToolContext # -- target-file - var opt_file = new OptionString("Specify test suite location.", "-t", "--target-file") + var opt_file = new OptionString("Specify test suite location", "-t", "--target-file") # --pattern - var opt_pattern = new OptionString("Only run test case with name that match pattern. Examples: 'TestFoo', 'TestFoo*', 'TestFoo::test_foo', 'TestFoo::test_foo*', 'test_foo', 'test_foo*'", "-p", "--pattern") + var opt_pattern = new OptionString("Only run test case with name that match pattern", "-p", "--pattern") end # Used to test nitunit test files. @@ -185,19 +185,19 @@ class TestSuite # Compile all `test_cases` cases in one file. fun compile do - # find nitg + # find nitc var nit_dir = toolcontext.nit_dir - var nitg = nit_dir/"bin/nitg" - if not nitg.file_exists then - toolcontext.error(null, "Cannot find nitg. Set envvar NIT_DIR.") + var nitc = nit_dir/"bin/nitc" + if not nitc.file_exists then + toolcontext.error(null, "Error: cannot find nitc. Set envvar NIT_DIR.") toolcontext.check_errors end # compile test suite var file = test_file var include_dir = mmodule.location.file.filename.dirname - var cmd = "{nitg} --no-color '{file}.nit' -I {include_dir} -o '{file}.bin' > '{file}.out' 2>&1 '{res_name}.out1' 2>&1