nixos/tests: support up to 255 nodes in NixOS tests
This commit is contained in:
parent
00022fbeda
commit
0410f5dff9
@ -2,7 +2,11 @@
|
|||||||
{ pkgs }:
|
{ pkgs }:
|
||||||
|
|
||||||
let
|
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
|
in
|
||||||
|
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user