diff options
author | Andrei Vagin <avagin@google.com> | 2019-03-08 13:32:37 -0800 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-03-08 13:33:32 -0800 |
commit | 832589cb076a638ca53076ebb66afb9fac4597d1 (patch) | |
tree | 6918d3d1a5cbd135fcb4e50355de296ea976da1c /kokoro | |
parent | fbacb350391667fa9ffb78a84ae51a37d477aa02 (diff) |
Fix tests which fail in kokoro
* open_create_test_runsc_ptrace_shared doesn't expect the write access to /
* exec_test_runsc_ptrace_shared could not find /usr/share/zoneinfo/
* clock_gettime_test_runsc_ptrace_shared didn't expect that
a thread cpu time can be zero.
* affinity_test_runsc_ptrace_shared expected minimum 3 cpus
PiperOrigin-RevId: 237509429
Change-Id: I477937e5d2cdf3f8720836bfa972abd35d8220a3
Diffstat (limited to 'kokoro')
-rwxr-xr-x | kokoro/run_tests.sh | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/kokoro/run_tests.sh b/kokoro/run_tests.sh index 4980c716a..f0195a5a4 100755 --- a/kokoro/run_tests.sh +++ b/kokoro/run_tests.sh @@ -177,16 +177,10 @@ run_root_tests() { # Run syscall unit tests. run_syscall_tests() { cd ${WORKSPACE_DIR} - # TODO: Exclude tests which fail. bazel \ "${BAZEL_RBE_FLAGS[@]}" \ test "${BAZEL_BUILD_RBE_FLAGS[@]}" \ - `bazel query //test/syscalls/... | - grep runsc_ptrace | - grep -v affinity_test_runsc_ptrace | - grep -v exec_test_runsc_ptrace | - grep -v open_create_test_runsc_ptrace | - grep -v clock_gettime_test_runsc_ptrace` + --test_tag_filters=runsc_ptrace //test/syscalls/... } # Find and rename all test xml and log files so that Sponge can pick them up. |