Skip to content

Commit

Permalink
Excluded offloading tests from Helgrind due to timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkr committed Jan 3, 2018
1 parent 3df7c2d commit cc2c884
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions ci_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# This file is part of b6b.
#
# Copyright 2017 Dima Krasner
# Copyright 2017, 2018 Dima Krasner
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -57,8 +57,8 @@ do
meson test -C $i --no-rebuild --print-errorlogs --no-suite b6b:slow --num-processes 1 -t 3 --wrapper "valgrind --leak-check=full --error-exitcode=1 --malloc-fill=1 --free-fill=1 --track-fds=yes"

# run multi-threaded tests with Helgrind
meson test -C $i --no-rebuild --print-errorlogs --suite b6b:threaded --num-processes 1 -t 3 --wrapper "valgrind --tool=helgrind --error-exitcode=1"
meson test -C $i --no-rebuild --print-errorlogs --suite b6b:threaded --num-processes 1 -t 3 --wrapper "valgrind --tool=helgrind --error-exitcode=1 --fair-sched=yes"
meson test -C $i --no-rebuild --print-errorlogs --suite b6b:threaded --no-suite b6b:intensive --num-processes 1 -t 3 --wrapper "valgrind --tool=helgrind --error-exitcode=1"
meson test -C $i --no-rebuild --print-errorlogs --suite b6b:threaded --no-suite b6b:intensive --num-processes 1 -t 3 --wrapper "valgrind --tool=helgrind --error-exitcode=1 --fair-sched=yes"
done

meson test -C build-coverage
Expand Down
4 changes: 2 additions & 2 deletions tests/meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is part of b6b.
#
# Copyright 2017 Dima Krasner
# Copyright 2017, 2018 Dima Krasner
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -119,7 +119,7 @@ if get_option('with_threads')
]

if with_offload
core_tests += [['offload', ['threaded', 'slow'], 15]]
core_tests += [['offload', ['threaded', 'slow', 'intensive'], 15]]
endif

stream_tests += [['sem', ['threaded', 'quick'], 5]]
Expand Down

0 comments on commit cc2c884

Please sign in to comment.