python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / tests / sfxr-qt.nix
blob976b9b11fc66aa2186b66f1076e66d53cf1cbb19
1 import ./make-test-python.nix ({ pkgs, ... }: {
2   name = "sfxr-qt";
3   meta = with pkgs.lib.maintainers; {
4     maintainers = [ fgaz ];
5   };
7   machine = { config, pkgs, ... }: {
8     imports = [
9       ./common/x11.nix
10     ];
12     services.xserver.enable = true;
13     sound.enable = true;
14     environment.systemPackages = [ pkgs.sfxr-qt ];
15   };
17   enableOCR = true;
19   testScript =
20     ''
21       machine.wait_for_x()
22       # Add a dummy sound card, or the program won't start
23       machine.execute("modprobe snd-dummy")
25       machine.execute("sfxr-qt >&2 &")
27       machine.wait_for_window(r"sfxr")
28       machine.sleep(10)
29       machine.wait_for_text("requency")
30       machine.screenshot("screen")
31     '';