diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-07-31 22:08:01 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-07-31 22:08:01 +0900 |
| commit | 3ae0cec000408562452703b2c0faad42260e3b53 (patch) | |
| tree | 43dd7bbdf12c136be3711ec3fe3cf789c4c8bae2 | |
| parent | 4e518f11d8b28d13ab23b7126ef87f882042bf0a (diff) | |
test: increase vm memory
This hopefully fixes the intermittent failures.
Signed-off-by: Ophestra <cat@gensokyo.uk>
| -rw-r--r-- | test/configuration.nix | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/test/configuration.nix b/test/configuration.nix index e1fa892d..2c848bc1 100644 --- a/test/configuration.nix +++ b/test/configuration.nix @@ -82,13 +82,18 @@ jack.enable = true; }; - virtualisation.qemu.options = [ - # Need to switch to a different GPU driver than the default one (-vga std) so that Sway can launch: - "-vga none -device virtio-gpu-pci" + virtualisation = { + # Hopefully reduces spurious test failures: + memorySize = 4096; - # Increase Go test compiler performance: - "-smp 8" - ]; + qemu.options = [ + # Need to switch to a different GPU driver than the default one (-vga std) so that Sway can launch: + "-vga none -device virtio-gpu-pci" + + # Increase Go test compiler performance: + "-smp 8" + ]; + }; environment.hakurei = { enable = true; |
