From 2eaf9b409a9f71f425ffe66faf5fa6ecd0bddbc1 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Fri, 23 Jul 2021 10:03:14 +0200 Subject: [PATCH] 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). (cherry picked from commit 11400dcd65ed95292d7ac7cb30912e15ec4cf8e1) --- nixos/tests/chromium.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/tests/chromium.nix b/nixos/tests/chromium.nix index d2a8f276f12..752c8bef31d 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()