1
Fork 0

Update test-various to Ubuntu 20.04

The test command-setgroups.rs is adjusted to skip on musl, where
`sysconf(_SC_NGROUPS_MAX)` always returns a dummy value of 32,
even though the actual value is 65536. I'm not sure why this becomes
relevant only now though, as this was apparently the case since
kernel 2.6.4.
This commit is contained in:
Nikita Popov 2021-01-29 15:08:17 +01:00
parent b122908617
commit 0363655e8b
2 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,6 @@
FROM ubuntu:18.04
FROM ubuntu:20.04
RUN apt-get update && apt-get install -y --no-install-recommends \
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
g++ \
make \
ninja-build \

View file

@ -3,6 +3,7 @@
// ignore-cloudabi
// ignore-emscripten
// ignore-sgx
// ignore-musl - returns dummy result for _SC_NGROUPS_MAX
#![feature(rustc_private)]
#![feature(setgroups)]