From 20e31bc3de79b211704cf627f4505cc1b1dfdc3d Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Thu, 21 Feb 2019 23:14:40 -0500 Subject: [PATCH] ci: do not run nitc with `--colors-are-symbols`: it seems broken Signed-off-by: Jean Privat --- .gitlab-ci.yml | 1 - benchmarks/bench_engines.sh | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c7b8c3e..0d94fd3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -307,7 +307,6 @@ bench_fast: - benchmarks/*.dat - benchmarks/*.gnu when: always - allow_failure: true # MORE TOOLS ######################################################## diff --git a/benchmarks/bench_engines.sh b/benchmarks/bench_engines.sh index dfe66ae..ad25612 100755 --- a/benchmarks/bench_engines.sh +++ b/benchmarks/bench_engines.sh @@ -217,7 +217,8 @@ bench_nitc_options "faster" --erasure --skip-dead-methods --inline-coloring-numb bench_nitc_options "engine" "" NOALL "--separate" "--erasure" "--separate --semi-global" "--erasure --semi-global" "--erasure --semi-global --rta" "--global" bench_nitc_options "policy" "" NOALL "--separate" "--erasure" "--separate --no-check-covariance" "--erasure --no-check-covariance --no-check-erasure-cast" bench_nitc_options "nullables" "" "--no-check-attr-isset" "--no-union-attribute" -bench_nitc_options "linkboost" "" NOALL --trampoline-call --colors-are-symbols "--colors-are-symbols --trampoline-call" "--separate --link-boost" "--separate --colors-are-symbols --guard-call" "--separate --colors-are-symbols --direct-call-monomorph0" "--substitute-monomorph" +#bench_nitc_options "linkboost" "" NOALL --trampoline-call --colors-are-symbols "--colors-are-symbols --trampoline-call" "--separate --link-boost" "--separate --colors-are-symbols --guard-call" "--separate --colors-are-symbols --direct-call-monomorph0" "--substitute-monomorph" # --colors-are-symbols is broken :( +bench_nitc_options "linkboost" "" NOALL --trampoline-call --guard-call --substitute-monomorph bench_nitc_options "monomorph" "" --direct-call-monomorph0 --direct-call-monomorph bench_nitc_options "misc" "" --log --typing-test-metrics --invocation-metrics --isset-checks-metrics --tables-metrics --no-stacktrace --release --debug #FIXME add --sloppy -- 1.7.9.5