about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/ccache
diff options
context:
space:
mode:
authorKira Bruneau <kira.bruneau@pm.me>2021-04-11 14:32:26 -0400
committerKira Bruneau <kira.bruneau@pm.me>2021-04-11 14:33:16 -0400
commitdbeee740859bac94f1c6719aee718a5e854de9ff (patch)
tree073b6acb2407fb02fff297e3ff31a9e46603dd1c /pkgs/development/tools/misc/ccache
parent26f66129f8a2f63fe51f8ba1b547de9e6db8a425 (diff)
ccache: enable test.modules on Darwin
test.modules now passes on Darwin
Diffstat (limited to 'pkgs/development/tools/misc/ccache')
-rw-r--r--pkgs/development/tools/misc/ccache/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/misc/ccache/default.nix b/pkgs/development/tools/misc/ccache/default.nix
index 642a1cf4ebfe3..4128118decf6e 100644
--- a/pkgs/development/tools/misc/ccache/default.nix
+++ b/pkgs/development/tools/misc/ccache/default.nix
@@ -48,7 +48,7 @@ let ccache = stdenv.mkDerivation rec {
   checkPhase = ''
     export HOME=$(mktemp -d)
     ctest --output-on-failure ${lib.optionalString stdenv.isDarwin ''
-      -E '^(test.nocpp2|test.modules|test.basedir|test.multi_arch)$'
+      -E '^(test.nocpp2|test.basedir|test.multi_arch)$'
     ''}
   '';