summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2021-07-23 10:03:14 +0200
committerMichael Weiss <dev.primeos@gmail.com>2021-07-23 10:15:25 +0200
commit11400dcd65ed95292d7ac7cb30912e15ec4cf8e1 (patch)
tree0f8701f4ddd492df49ceefa0695e7deb9195bc62 /nixos
parentd504096d1e57698ad0c4c07873a285764db47bbb (diff)
downloadnixpkgs-11400dcd65ed95292d7ac7cb30912e15ec4cf8e1.tar
nixpkgs-11400dcd65ed95292d7ac7cb30912e15ec4cf8e1.tar.gz
nixpkgs-11400dcd65ed95292d7ac7cb30912e15ec4cf8e1.tar.bz2
nixpkgs-11400dcd65ed95292d7ac7cb30912e15ec4cf8e1.tar.lz
nixpkgs-11400dcd65ed95292d7ac7cb30912e15ec4cf8e1.tar.xz
nixpkgs-11400dcd65ed95292d7ac7cb30912e15ec4cf8e1.tar.zst
nixpkgs-11400dcd65ed95292d7ac7cb30912e15ec4cf8e1.zip
chromium: Check the text rendering
This should catch regressions like #131074 in the future. In that case a
glibc update caused a regression that caused most of the text to become
invisible (just not the "Web Store" we've already been checking for).
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/chromium.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/tests/chromium.nix b/nixos/tests/chromium.nix
index c4ad73679b7..0c85b2d2199 100644
--- a/nixos/tests/chromium.nix
+++ b/nixos/tests/chromium.nix
@@ -239,7 +239,8 @@ mapAttrs (channel: chromiumPkg: makeTest rec {
 
 
     with test_new_win("gpu_info", "chrome://gpu", "chrome://gpu"):
-        pass
+        # To check the text rendering (catches regressions like #131074):
+        machine.wait_for_text("Graphics Feature Status")
 
 
     machine.shutdown()