diff options
author | David Malcolm <dmalcolm@redhat.com> | 2015-01-16 21:30:26 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2015-01-16 21:30:26 +0000 |
commit | 499de348e9173f2cd3ac5d809109d6044e4e713f (patch) | |
tree | b659e40f4aa3436a6d8d3c0a7fb5849115449052 /gcc/jit | |
parent | 109c4a7c0ab4f2a982a0e7f040d1af1e0294c041 (diff) | |
download | gcc-499de348e9173f2cd3ac5d809109d6044e4e713f.zip gcc-499de348e9173f2cd3ac5d809109d6044e4e713f.tar.gz gcc-499de348e9173f2cd3ac5d809109d6044e4e713f.tar.bz2 |
Parallelize the jit testsuite
gcc/jit/ChangeLog:
* Make-lang.in (lang_checks_parallelized): Add "check-jit".
(check_jit_parallelize): Set this to an arbitrary value (10).
From-SVN: r219774
Diffstat (limited to 'gcc/jit')
-rw-r--r-- | gcc/jit/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/jit/Make-lang.in | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gcc/jit/ChangeLog b/gcc/jit/ChangeLog index 1bd439a..5154921 100644 --- a/gcc/jit/ChangeLog +++ b/gcc/jit/ChangeLog @@ -1,3 +1,8 @@ +2015-01-16 David Malcolm <dmalcolm@redhat.com> + + * Make-lang.in (lang_checks_parallelized): Add "check-jit". + (check_jit_parallelize): Set this to an arbitrary value (10). + 2015-01-16 Jakub Jelinek <jakub@redhat.com> * jit-builtins.h (DEF_FUNCTION_TYPE_VAR_5): Fix spelling of diff --git a/gcc/jit/Make-lang.in b/gcc/jit/Make-lang.in index 551b115..e622690 100644 --- a/gcc/jit/Make-lang.in +++ b/gcc/jit/Make-lang.in @@ -247,6 +247,11 @@ jit.man: jit.srcman: lang_checks += check-jit +lang_checks_parallelized += check-jit +# This number is somewhat arbitrary. Two tests are much slower +# than all the others (test-combination.c and test-threads.c) so +# we want them to be placed in different "buckets". +check_jit_parallelize = 10 # # Install hooks: |