diff options
author | Zach Koopmans <zkoopmans@google.com> | 2020-08-11 10:35:46 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-11 10:37:32 -0700 |
commit | 89f3197fc368702cbe1842932d9cfbede250269f (patch) | |
tree | fbdbc563ba38831140a2349022d25e5bdd3b4db1 /scripts | |
parent | 8e31f0dc57d44fb463441f6156fba5c240369dfe (diff) |
Mark integration tests as passing in VFS2 except CheckpointRestore.
Mark all tests passing for VFS2 in:
image_test
integration_test
There's no way to do negative look ahead/behind in golang test regex,
so check if the tests uses VFS2 and skip CheckPointRestore if it does.
PiperOrigin-RevId: 326050915
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/docker_tests.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/scripts/docker_tests.sh b/scripts/docker_tests.sh index ce3ffa2eb..4f3867d05 100755 --- a/scripts/docker_tests.sh +++ b/scripts/docker_tests.sh @@ -22,7 +22,4 @@ install_runsc_for_test docker test_runsc //test/image:image_test //test/e2e:integration_test install_runsc_for_test docker --vfs2 -# Sync with //Makefile. -IMAGE_FILTER="Hello|Httpd|Ruby|Stdio" -INTEGRATION_FILTER="LifeCycle|Pause|Connect|JobControl|Overlay|Exec|DirCreation|Link" -test_runsc //test/e2e:integration_test //test/image:image_test --test_filter="${IMAGE_FILTER}|${INTEGRATION_FILTER}" +test_runsc //test/e2e:integration_test //test/image:image_test |