diff options
author | Zach Koopmans <zkoopmans@google.com> | 2020-07-26 21:42:17 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-07-26 21:43:46 -0700 |
commit | b38bae00885ef1bc97ff2798917e286bc14ca2f0 (patch) | |
tree | 29ceb28427f6ce8dbac11e091af2a7d0ddc8c5bf /scripts/docker_tests.sh | |
parent | d6b676ae6ac6ab6f3520d6d2663b9d71c29a3788 (diff) |
Mark Passing Integration Tests for VFS2.
Mark the currently passing integration/image tests for
VFS2. Bugs will be filed for remaining failing tests.
Updates #1487
PiperOrigin-RevId: 323297260
Diffstat (limited to 'scripts/docker_tests.sh')
-rwxr-xr-x | scripts/docker_tests.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/docker_tests.sh b/scripts/docker_tests.sh index dce0a4085..07e9f3109 100755 --- a/scripts/docker_tests.sh +++ b/scripts/docker_tests.sh @@ -22,4 +22,6 @@ install_runsc_for_test docker test_runsc //test/image:image_test //test/e2e:integration_test install_runsc_for_test docker --vfs2 -test_runsc //test/image:image_test --test_filter=.*TestHelloWorld +IMAGE_FILTER="Hello|Httpd|Ruby|Stdio" +INTEGRATION_FILTER="LifeCycle|Pause|Connect|JobControl|Overlay|Exec|DirCreation/root" +test_runsc //test/e2e:integration_test //test/image:image_test --test_filter="${IMAGE_FILTER}|${INTEGRATION_FILTER}" |