Hello, I was playing around with 'make check' in my NIX shell define as :
{inputs.nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
outputs = { self, nixpkgs}:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
devShells.x86_64-linux.default = pkgs.mkShell {
buildInputs = with pkgs; [
];
shellHook = ''
export PS1="\[\033[1;32m\](flake:\W)\[\033[0m\] $ "
'';
};
};
}
And I encounter this behaviour.
============================================================================
FAIL: test-getlogin
===================
test-getlogin.h:113: assertion 'pwd->pw_uid == stat_buf.st_uid' failed
FAIL test-getlogin (exit status: 134)
============================================================================
Testsuite summary for GNU coreutils 9.9
============================================================================
# TOTAL: 574
# PASS: 480
# SKIP: 93
# XFAIL: 0
# FAIL: 1
# XPASS: 0
# ERROR: 0
============================================================================
As presented in the console log, this is my system information :
Linux flodarpie 6.14.0-37-generic #37~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Thu
Nov 20 10:25:38 UTC 2 x86_64 x86_64 x86_64 GNU/Linux
I'm available for more details.
Sincerely,
Florian Duzes
CEA-List<<attachment: test-suite.zip>>
