From 8b3a6b991ca8c3c195ef651454cdc7ceca9cc9e2 Mon Sep 17 00:00:00 2001 From: Mick Jordan <mick.jordan@oracle.com> Date: Thu, 30 Jan 2014 18:21:23 -0800 Subject: [PATCH] fix gate autogen test error message --- mx.fastr/mx_fastr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mx.fastr/mx_fastr.py b/mx.fastr/mx_fastr.py index fa16ba0b31..fd22c58754 100644 --- a/mx.fastr/mx_fastr.py +++ b/mx.fastr/mx_fastr.py @@ -113,7 +113,7 @@ def _check_autogen_tests(copy): files_equal = filecmp.cmp(all_tests, join(_tempdir, 'AllTests.java')) and filecmp.cmp(failing_tests, join(_tempdir, 'FailingTests.java')) shutil.rmtree(_tempdir) if not files_equal: - mx.abort('AllTests.java and/or FailingTests.java are out of sync, regenerate with mx rignoretests') + mx.abort('AllTests.java and/or FailingTests.java are out of sync, regenerate with mx rtestgen') def _test_srcdir(): tp = 'com.oracle.truffle.r.test' -- GitLab