mirror of
https://github.com/brl/mutter.git
synced 2024-11-09 23:46:33 -05:00
tests/anonymous-file: Skip the rlimit part of the test when running CI
SIGXFSZ is triggered for this test when running in a CI runner, but not on real hw. Skip running that part for now. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1557>
This commit is contained in:
parent
c4dbf81c95
commit
c55a3d1edc
@ -209,17 +209,25 @@ main (int argc,
|
||||
* size this process may create to 2 bytes, if memfd_create with
|
||||
* MAPMODE_PRIVATE is used, everything should still work (the existing FD
|
||||
* should be used). */
|
||||
struct rlimit limit = {2, 2};
|
||||
if (setrlimit (RLIMIT_FSIZE, &limit) == -1)
|
||||
goto fail;
|
||||
|
||||
fd = meta_anonymous_file_open_fd (file, META_ANONYMOUS_FILE_MAPMODE_PRIVATE);
|
||||
g_assert (fd != -1);
|
||||
if (!getenv ("CI_JOB_ID"))
|
||||
{
|
||||
struct rlimit rlimit = {
|
||||
.rlim_cur = 2,
|
||||
.rlim_max = 2,
|
||||
};
|
||||
|
||||
if (!test_read_fd_mmap (fd, teststring))
|
||||
goto fail;
|
||||
if (setrlimit (RLIMIT_FSIZE, &rlimit) == -1)
|
||||
goto fail;
|
||||
|
||||
meta_anonymous_file_close_fd (fd);
|
||||
fd = meta_anonymous_file_open_fd (file, META_ANONYMOUS_FILE_MAPMODE_PRIVATE);
|
||||
g_assert (fd != -1);
|
||||
|
||||
if (!test_read_fd_mmap (fd, teststring))
|
||||
goto fail;
|
||||
|
||||
meta_anonymous_file_close_fd (fd);
|
||||
}
|
||||
#else
|
||||
fd = meta_anonymous_file_open_fd (file, META_ANONYMOUS_FILE_MAPMODE_PRIVATE);
|
||||
g_assert (fd != -1);
|
||||
|
Loading…
Reference in New Issue
Block a user