biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / build-support / trivial-builders / test / concat-test.nix
blob8f7e7a4200327ab0db23d7737d167932b7d0480a
1 { runCommand, concatText, writeText, hello, emptyFile }:
2 let
3   stri = writeText "pathToTest";
4   txt1 = stri "abc";
5   txt2 = stri (builtins.toString hello);
6   res = concatText "textToTest" [ txt1 txt2 ];
7 in
8 runCommand "test-concatPaths" { } ''
9   diff -U3 <(cat ${txt1} ${txt2}) ${res}
10   diff -U3 ${concatText "void" []} ${emptyFile}
11   touch $out