diff options
Diffstat (limited to 'test/syscalls/README.md')
-rw-r--r-- | test/syscalls/README.md | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/test/syscalls/README.md b/test/syscalls/README.md index c72aaf9bc..9e0991940 100644 --- a/test/syscalls/README.md +++ b/test/syscalls/README.md @@ -92,19 +92,16 @@ fixtures. A test utility should be created when there is more than one test that requires that same functionality, otherwise the class should be test local. - ## Save/Restore support in tests + gVisor supports save/restore, and our syscall tests are written in a way to enable saving/restoring at certain points. Hence, there are calls to `MaybeSave`, and certain tests that should not trigger saves are named with `NoSave`. However, the current open-source test runner does not yet support triggering -save/restore, so these functions and annotations have no effect on the -open-source tests. - -We plan on extending our open-source test runner to trigger save/restore. Until -then, these functions and annotations should be ignored. - +save/restore, so these functions and annotations have no effect on the tests. We +plan on extending the test runner to trigger save/restore. Until then, these +functions and annotations should be ignored. [googletest]: https://github.com/abseil/googletest |