nixos/tests: support up to 255 nodes in NixOS tests

This commit is contained in:
Bas van Dijk
2020-07-20 13:09:27 +02:00
parent 00022fbeda
commit 0410f5dff9
+5 -1
View File
@@ -2,7 +2,11 @@
{ pkgs }:
let
zeroPad = n: if n < 10 then "0${toString n}" else toString n;
zeroPad = n:
pkgs.lib.optionalString (n < 16) "0" +
(if n > 255
then throw "Can't have more than 255 nets or nodes!"
else pkgs.lib.toHex n);
in
{