diff options
author | Vincent Ambo <mail@tazj.in> | 2023-01-15T11·52+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2023-01-16T13·43+0000 |
commit | d365b092262013e074f0fe800a1955032eaa2fd9 (patch) | |
tree | d5c32fecf48fdcc2ec9697accd2be69c1c977a1a /tvix/eval/src/tests/nix_tests/notyetpassing | |
parent | 1786b4c835cbce619ddae77ffeebe89b24d50c0e (diff) |
feat(tvix/eval): implement builtins.toXML r/5664
Change-Id: I009efc53a8e98f0650ae660c4decd8216e8a06e7 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7835 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/tests/nix_tests/notyetpassing')
4 files changed, 0 insertions, 6 deletions
diff --git a/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-toxml.exp b/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-toxml.exp deleted file mode 100644 index 828220890ecd..000000000000 --- a/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-toxml.exp +++ /dev/null @@ -1 +0,0 @@ -"<?xml version='1.0' encoding='utf-8'?>\n<expr>\n <attrs>\n <attr name=\"a\">\n <string value=\"s\" />\n </attr>\n </attrs>\n</expr>\n" diff --git a/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-toxml.nix b/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-toxml.nix deleted file mode 100644 index 068c97a6c1b3..000000000000 --- a/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-toxml.nix +++ /dev/null @@ -1,3 +0,0 @@ -# Make sure the expected XML output is produced; in particular, make sure it -# doesn't contain source location information. -builtins.toXML { a = "s"; } diff --git a/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-toxml2.exp b/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-toxml2.exp deleted file mode 100644 index 634a841eb190..000000000000 --- a/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-toxml2.exp +++ /dev/null @@ -1 +0,0 @@ -"<?xml version='1.0' encoding='utf-8'?>\n<expr>\n <list>\n <string value=\"ab\" />\n <int value=\"10\" />\n <attrs>\n <attr name=\"x\">\n <string value=\"x\" />\n </attr>\n <attr name=\"y\">\n <string value=\"x\" />\n </attr>\n </attrs>\n </list>\n</expr>\n" diff --git a/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-toxml2.nix b/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-toxml2.nix deleted file mode 100644 index ff1791b30eb5..000000000000 --- a/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-toxml2.nix +++ /dev/null @@ -1 +0,0 @@ -builtins.toXML [("a" + "b") 10 (rec {x = "x"; y = x;})] |